AppleScript リストの値を更新するサンプルコード

環境
macOS 11.6

書式
set 変数名 item 位置 of to 値
リストの値を更新するには、「set item of to」を使用します。

ファイル名:data.scpt
サンプルコード

set l to  {{1, 2, 3},{4, 5, 6},{7, 8, 9}}

set item 3 of l to {70,80,90}

l

実行結果
osascript data.scpt
1, 2, 3, 4, 5, 6,70,80,90

AppleScript

Posted by arkgame