0

我将如何从 applescript 应用程序中打开文件?我会把它放在/Contents/Resources我的applescript应用程序中。我想知道的是我会告诉实际脚本做什么?

4

1 回答 1

2

要获取应用程序的路径,请使用path to me命令并构建资源路径。然后,您可以使用 Finder 使用默认程序打开文件,或者您可以告诉特定程序打开文件。

set filepath to (path to me as string) & "Contents:Resources:file.ext"

tell application "Finder"
    open alias filepath
end tell

--OR

tell application "Microsoft Word"
    open alias filepath
end tell
于 2013-09-11T20:12:34.733 回答