AppleScriptでtell 内で他の関数を呼ぶ
on run tell application hello() end tell end run on hello() log "Hello World" end hello
このままだと Can’t get hello of application. と言われてしまうので
tell application hello() of me end tell
とすることでtell内で他のハンドラを呼ぶことができた
on run tell application hello() end tell end run on hello() log "Hello World" end hello
このままだと Can’t get hello of application. と言われてしまうので
tell application hello() of me end tell
とすることでtell内で他のハンドラを呼ぶことができた