获取文件路径,用作击键中的变量(applescript)

时间:2014-10-02 18:15:26

标签: applescript

我正在尝试编写一个脚本来获取所选文件的路径并为我输入终端。我是脚本新手,所以这就是我到目前为止所做的一切 - 错误将是美好而明显的!

将文件路径设置为(当前选择的文件的路径,或拖放文件......?)

激活应用程序"终端"

告诉应用程序"系统事件"击键" ./ aerender -project" +"' $ filepath'"

告诉应用程序"系统事件"击键返回**

我知道这完全错了,但希望它能让我知道我想做什么。

提前致谢!

1 个答案:

答案 0 :(得分:0)

您可以直接编写终端脚本...不需要UI脚本。

tell application "Finder" to set filePath to POSIX path of file (selection as string)
set filePath to quoted form of filePath
tell application "Terminal"
    activate
    set currentTab to do script ("./aerender -project " & filePath)
end tell