我正在尝试在系统偏好设置的任务控制窗格中设置复选框。到目前为止,我可以打开 MC,但我不知道如何单击复选框。我尝试了我在互联网上找到的所有东西,但没有运气......我该怎么做?
告诉应用程序“系统偏好设置”激活将当前窗格设置为窗格“com.apple.preference.expose”结束告诉
我正在尝试在系统偏好设置的任务控制窗格中设置复选框。到目前为止,我可以打开 MC,但我不知道如何单击复选框。我尝试了我在互联网上找到的所有东西,但没有运气......我该怎么做?
告诉应用程序“系统偏好设置”激活将当前窗格设置为窗格“com.apple.preference.expose”结束告诉
仅当当前未选中时,才会单击窗格的第一个复选框:
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