open file
file | 開く項目 |
image | 命令の結果 |
何をするにも、まずこの命令で、ファイルをimageオブジェクトに読み込むのが、Image Eventsのパターン。
その際、tell application "Image Events"の直後でlaunch命令を行っておくのも定石。
set theFile to choose file
tell application "Image Events"
launch
set theImg to open theFile
-- ここで、画像の処理を行う
close theImg
end tell