如何使用 AppleScript 获取在预览中打开的文档的路径?
我已经尝试过这个,但它不起作用:
tell application "Preview"
set myfile to path of document 1 of window 1
end tell
我已经验证我的预览是可编写脚本的(NSAppleScriptEnabled)。
I have tried this but it doesn't work:
tell application "Preview"
set myfile to path of document 1 of window 1
end tell
I have verified that my Preview is scriptable (NSAppleScriptEnabled).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我做了一些研究,发现了
我在 macscripter 上找到的
I did a little research and found this
which i found on macscripter
在我的 10.6 系统上,Preview 没有 Applescript 字典。这是可编写脚本的应用程序所需要的。虽然 Preview 说它可以执行 Applescript,但实际上不能。
它无法将“窗口 1 的文档 1 的路径”转换为任何有意义的内容。
通常人们使用 GUI 脚本与 Preview 交互,或者他们找到其他方式。
On my 10.6 system Preview doesn't have an Applescript dictionary. This is something that scriptable applications need. While Preview SAYS it can do Applescript, it really can't.
It has no way to translate the "path of document 1 of window 1" into anything meaningful.
Usually people use GUI Scripting to interact with Preview, or they find another way.
最简单的方法是:
或者,适合您的示例:
Simplest way is:
Or, to fit your example:
即使预览处于全屏模式,要准确获取当前文档的路径,请使用:
To get the path to the current document accurately even if Preview is in full screen mode, use: