AppleScript 関数を作成する方法
環境
macOS 11.6
構文
on 関数名(引数)
処理コード
end f
関数名(引数)
操作例
ファイル名 cft.scpt
サンプルコード
on funA(x,y) x + y end funA funA(6,2)
実行結果
osascript cft.scpt
実行結果
8
Coding Changes the World
on funA(x,y) x + y end funA funA(6,2)
実行結果
osascript cft.scpt
実行結果
8