「Tell(について)」は、命令を与える対象を指示します。
J-- referenceについてstatement
E-- tell reference to statement
Examples
----------
ウィンドウ1について閉じる
アプリケーション“スクリプティング対応エディタ"について終了する
or
tell window 1 to close
or
tell application "スクリプティング対応エディタ" to quit
J--
referenceについて [ 以下を行う ]
[ statement ]
以上
E--
tell reference
[ statement ]
end tell
Examples
----------
アプリケーション“スクリプティング対応エディタ”について
tell application "スクリプティング対応エディタ"
----------
アプリケーション“スクリプティング対応エディタ”について
tell application "スクリプティング対応エディタ"
---この例は、次の例と同じことを表します。
アプリケーション“スクリプティング対応エディタ”のウィンドウ2について
tell window 2 of application "スクリプティング対応エディタ"
アクティベート
以上
activate
end tell
ウィンドウ2について
閉じる
以上
以上
tell window 2
close
end tell
end tell
閉じる
以上
close
end tell