我正在寻找一种解决方案,以便使用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
答案 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