0

我有个问题。我是一个完整的 Applescript 新手,我正在尝试使用 droplet 将 3 个文件从我的桌面简单地打开到 Photoshop CS4 中,但是当我删除文件时,我得到了这个错误:

无法获得别名“Macintosh HD:Users:nazkav:Desktop:Kav1_jpg”

这是我正在使用的代码:

    on open these_files
      repeat with i from 1 to the count of these_files
        set this_file to item i of these_files
         my image(this_file)
      end repeat
    end open
    on image(the_image)
      tell application "Adobe Photoshop CS4"
        activate
        open the_image as JPEG
      end tell
    end image

我希望有人可以帮助提前谢谢

凯文

4

0 回答 0