如何在与AppleScript代码相同的文件夹中打开文件?沿着这些方向的东西?
tell application "QuickTime Player"
activate
open "file.avi"
end tell
(这不起作用)。 谢谢!
答案 0 :(得分:9)
tell application "Finder"
open file "somefile.txt" of folder of (file (path to me))
end tell
(仅在您保存脚本后才有效 - 否则“我的路径”会转到脚本编辑器)