move 参照リスト
	to 参照

引数(Parameters)

参照リスト移動するオブジェクト
参照オブジェクトを移動する場所

結果(Result)

参照リスト移動完了したオブジェクト

解説(Note)

 duplicate命令は複製するが、こちらは移動する。

用例(Example)

  1. tell application "スクリプティング対応エディタ"
    	activate
    	tell document 1
    		select paragraph 1
    		move selection to after last character
    	end tell
    end tell