如何在Mission Control中设置复选框?

时间:2013-06-14 19:51:16

标签: applescript

我正在尝试在“系统偏好设置”中的“任务控制”窗格中设置复选框。到目前为止,我可以打开MC,但我不知道如何点击复选框。我尝试了我在互联网上找到的所有东西,但没有运气...... 我该怎么办?

  

告诉应用程序“系统偏好设置”激活设置当前窗格   窗格“com.apple.preference.expose”结束告诉

1 个答案:

答案 0 :(得分:1)

只有当前未选中时,才会单击窗格的第一个复选框:

tell application "System Preferences"
    set current pane to pane "com.apple.preference.expose"
    activate
end tell
tell application "System Events"
    tell process "System Preferences"
        set firstCheckbox to checkbox 1 of group 2 of window 1
        set checked to value of firstCheckbox as boolean
        if (not checked) then
            click firstCheckbox
        end if
    end tell
end tell