open file

引数(Parameters)

file 開く項目

結果(Result)

image 命令の結果

解説(Note)

 何をするにも、まずこの命令で、ファイルをimageオブジェクトに読み込むのが、Image Eventsのパターン。
 その際、tell application "Image Events"の直後でlaunch命令を行っておくのも定石。

用例(Example)

  1. set theFile to choose file
    tell application "Image Events"
            launch
            set theImg to open theFile
            -- ここで、画像の処理を行う
            close theImg
    end tell