select 参照リスト
参照リスト | 選択するオブジェクト |
選択されたオブジェクトのリストは、applicationの要素selectionに格納される。
参照リストには、リストが使えないアプリケーションも多い。例えば「select every word」としても選択されそうなものだが、「every text」を使うか、例1,2のように指定する。
結果は返らない方が標準であり、返る場合もアプリケーションによって違いが見られる。
tell application "スクリプティング対応エディタ"
select (text from first character to last character of document 1)
end tell
tell application "スクリプティング対応エディタ"
select contents of document 1
end tell
tell document 1 of application "スクリプティング対応エディタ"
select insertion point before contents
end tell
tell application "スクリプティング対応エディタ"
select end of document 1
end tell