预览是无法编写的,Mountain Lion上打开了注释工具栏

时间:2012-10-18 16:41:34

标签: applescript osx-mountain-lion preview

尝试编写用于预览的UI脚本来播放注释,但似乎打开注释工具栏会破坏脚本。我注意到,一旦注释工具栏打开,任何自定义热键也会停止工作。

这可以通过下面的AppleScript运行来复制,工具栏打开然后在关闭时再次运行:

tell application "System Events"
    tell process "Preview"
        tell front window
            return every UI element
        end tell
    end tell
end tell

我在这里做错了什么,或者预览刚好坏了吗?

干杯

1 个答案:

答案 0 :(得分:0)

我设法使用Michael Tsai在此主题中发布的说明 - Is OSX Lion Preview application scriptable?来使其工作。

发布文章的直接链接是http://c-command.com/blog/2009/12/28/capture-from-preview/