select 参照リスト

引数(Parameters)

参照リスト選択するオブジェクト

解説(Note)

 選択されたオブジェクトのリストは、applicationの要素selectionに格納される。
 参照リストには、リストが使えないアプリケーションも多い。例えば「select every word」としても選択されそうなものだが、「every text」を使うか、例1,2のように指定する。
 結果は返らない方が標準であり、返る場合もアプリケーションによって違いが見られる。

用例(Example)

  1. tell application "スクリプティング対応エディタ"
    	select (text from first character to last character of document 1)
    end tell
  2. tell application "スクリプティング対応エディタ"
    	select contents of document 1
    end tell
  3. tell document 1 of application "スクリプティング対応エディタ"
    	select insertion point before contents
    end tell
  4. tell application "スクリプティング対応エディタ"
    	select end of document 1
    end tell