Tell (について)

 「Tell(について)」は、命令を与える対象を指示します。


1. 単純文

 J-- referenceについてstatement

 E-- tell reference to statement

Examples

----------

 ウィンドウ1について閉じる
  or
 tell window 1 to close

 アプリケーション“スクリプティング対応エディタ"について終了する
  or
 tell application "スクリプティング対応エディタ" to quit


2. 複合文

 J--

  referenceについて [ 以下を行う ]
    [ statement ]
  以上

 E--

  tell reference
    [ statement ]
  end tell

Examples

----------

 アプリケーション“スクリプティング対応エディタ”について
   アクティベート
 以上

 tell application "スクリプティング対応エディタ"
   activate
 end tell

----------

 アプリケーション“スクリプティング対応エディタ”について
   ウィンドウ2について
     閉じる
   以上
 以上

 tell application "スクリプティング対応エディタ"
   tell window 2
     close
   end tell
 end tell

 ---この例は、次の例と同じことを表します。

 アプリケーション“スクリプティング対応エディタ”のウィンドウ2について
   閉じる
 以上

 tell window 2 of application "スクリプティング対応エディタ"
   close
 end tell


制御文のページに戻る
AppleScriptのページに戻る
このホームページに関するお問い合わせは、karino@drycarbon.comまで。