using terms from オブジェクトto 文
using terms from オブジェクト
[文]
end [using terms from]
オブジェクト | 用語を参照するアプリケーションやOSAX |
文 | AppleScriptの任意の文 |
ネットワーク先にあるプログラムや、名前違いのプログラムなどの、HDにインストールされていないプログラムのためのスクリプトを書く場合に、他のプログラムの用語を使って代用するためのに用意されている。
指定したオブジェクトは構文確認の時に利用するだけで、実行する場合に参照されるのはtell文で指定したオブジェクトである。
tell文とセットで使用する場合が多いだろう。
Mac OS X10.9からは、オブジェクトにscriptとscripting additionsが使えるようになった。
use文での指定の補助などに使われる。
set theApp to choose application
tell theApp
using terms from application "Finder"
display dialog (name as string)
end using terms from
end tell