次のAppleScriptコードはコンパイルされません。コンパイラは "case"をハイライト表示し、 "Syntax Error:予想されるアプリケーション定数または考慮されていますが、見つかったプロパティ"と表示します。私はcase
がtell application "Microsoft Word"
という文脈で特別な意味を持つと思います。どうすればうまくいくのですか?ApplescriptでMicrosoft Wordに対処しているときに "検討中のケース"を使用する方法
tell application "Microsoft Word"
set c to content of character 1 of selection as string
considering case
if (c is "a") then
set content of text object of selection to "A"
end if
end considering
end tell
「考慮」ブロックを外部に貼り付け、他のすべてのものを取り囲むようにしてください。 – fireshadow52