1

我有一个简单的脚本

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

我将它保存为应用程序(假设是 myapp.app) 如果我只是通过双击从 finder 启动它,那么它可以工作(即显示对话框),但我想用它来打开文件。

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

4

1 回答 1

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
于 2013-09-23T13:49:33.103 回答