将简单的automator应用程序转换为applescript

时间:2014-10-14 17:28:17

标签: applescript automator

我对automator和applescript都很新。我创建了一个应用程序,它使用automator来打印拖放到程序图标上的文件。这很简单。在automator中,我只是运行

Print Finder Items

并且该程序有效。现在我需要做更复杂的事情,我需要弄清楚如何将这一个命令转换为applescript。我已经尝试了多个堆栈溢出文章中提供的建议,包括:Automator to Applescript for Editing Code但它对我没有帮助。如何将其转换为AppleScript?

1 个答案:

答案 0 :(得分:1)

tell application "Finder"
    set theItems to selection
    print theItems
end tell

您需要自己学习如何查找命令,以便了解他们的工作。打开AppleScript编辑器。在文件菜单下,选择"打开字典"并选择Finder。这本词典告诉你使用Appleder编写Finder可以做的一切。每个应用程序都有自己的字典,因此您需要开始查看这些字典。

该脚本适用于您在Finder中选择的任何文件。祝你好运。