在applescript中获取当前的adobe reader窗口标题
我编写了以下代码片段来获取 Firefox 窗口的标题,
tell application "Firefox"
set window_name to name of front window
display dialog window_name
end tell
它运行良好,但是当我将 Firefox 更改为 Adobe 时,出现以下错误
“Adobe Reader 出现错误:无法获取窗口 1 的名称”。
有人知道如何获取窗口标题吗?
I wrote the following snippet to get the title of the firefox window,
tell application "Firefox"
set window_name to name of front window
display dialog window_name
end tell
it's working well, but when I change firefox to adobe, I get the following error
"Adobe Reader got an error: Can’t get name of window 1."
Any one knows how to get the window title?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你已经把答案写在问题里了!
当我遇到涉及窗口标题的错误时,我会前往
系统事件
寻求帮助。这甚至适用于 Finder!系统事件
可以完成 Finder 可以完成的所有操作,有时甚至更多。如果您有任何疑问,请尽管询问。 :)You kind of wrote the answer in the question!
When I get errors referring to window titles, I go to
System Events
for help. This even applies to the Finder!System Events
can do everything the Finder can do, and sometimes more. If you have any questions, just ask. :)