使用Applescript

时间:2017-08-14 15:24:44

标签: macos applescript

我正在寻找一种解决方案,以便使用Applescript获取用户关闭的文件夹的路径。目的是在参数中使用此路径调用另一个脚本。

我已经尝试过这个,但它似乎不起作用(我的文件夹操作设置正确):

on closing folder window for theAttachedFolder
tell application "Finder"

    set thePath to POSIX path of theAttachedFolder
    display dialog thePath

    end tell
end on closing folder window for

1 个答案:

答案 0 :(得分:0)

您需要将end on closing folder window for更改为end closing folder window for,因为此块以单词on开头,并以单词end结尾。在这两种情况下,您都必须在其旁边写下操作的名称,在这种情况下:closing folder window。 另外,您可以将display dialog移出tell块,因为它不需要定位Finder应用程序。 display dialog是标准附加内容的一部分。

代码:

on closing folder window for theAttachedFolder
    tell application "Finder"

        set thePath to POSIX path of theAttachedFolder

    end tell
    display dialog thePath
end closing folder window for