Applescript从当前文件夹启动文件?

时间:2011-08-09 22:16:21

标签: applescript

如何在与AppleScript代码相同的文件夹中打开文件?沿着这些方向的东西?

tell application "QuickTime Player"
    activate
    open "file.avi"
end tell

(这不起作用)。 谢谢!

1 个答案:

答案 0 :(得分:9)

tell application "Finder"
    open file "somefile.txt" of folder of (file (path to me))
end tell

(仅在您保存脚本后才有效 - 否则“我的路径”会转到脚本编辑器)