AppleScript set item of toでリストの値を更新する方法
環境
macOS 11.6
構文
set 変数名 item 位置 of to 値
リストの値を更新するには、「set item of to」を使用します。
操作例
ファイル名:cft.scpt
サンプルコード
set tt to [6, 2, 8] set item 3 of tt to 77 tt
実行結果
osascript test.scpt
6, 2, 77
Coding Changes the World
環境
macOS 11.6
構文
set 変数名 item 位置 of to 値
リストの値を更新するには、「set item of to」を使用します。
操作例
ファイル名:cft.scpt
サンプルコード
set tt to [6, 2, 8] set item 3 of tt to 77 tt
実行結果
osascript test.scpt
6, 2, 77