Applescript应用程序和Open with

时间:2013-09-23 12:40:38

标签: applescript

我有一个简单的脚本

on run
    display dialog "Hello" buttons {"Ok"}
end run

我把它保存为应用程序(比方说myapp.app) 如果我只是通过双击从finder启动它然后它工作(即显示对话框),但我想用它来打开文件。

问题: 例如,我有file.xyz,然后右键单击它以“打开方式”并选择my.app。在这种情况下,my.app无法启动(停靠面板上没有图标,没有显示对话框)。

1 个答案:

答案 0 :(得分:2)

您可以使用开放处理程序在应用程序上拖动项目,如下所示:

on open of theFiles
    --  Executed when files are dropped on the application

    display dialog "There are " & (count of theFiles) & " files dropped" buttons {"OK"}
end open