Applescript:打开Dropbox首选项

时间:2014-11-18 15:47:09

标签: applescript

有没有办法使用Applescript打开Dropbox偏好设置?

我试过了:

tell application "Dropbox" to open "Preferences"

我之前看过Stack Overflow的帖子,但是从2011年开始。

1 个答案:

答案 0 :(得分:0)

我必须得到一点创造,但最终还是让它发挥作用。此脚本将打开Dropbox首选项:

tell application "System Events" to tell process "Dropbox"
    tell menu bar item 1 of menu bar 2
        click
    end tell
    tell window 1
        tell scroll area 1
            tell UI element 1
                tell group 33
                    click
                    keystroke "Preferences..."
                    keystroke return
                end tell
            end tell
        end tell
    end tell
end tell

然而,在执行单击后,在执行击键之前有5秒的延迟。 这个问题已被很多人报道,但我还没有找到解决方案。