Automator error (System Events got an error: Can’t get checkbox)
Automator error (System Events got an error: Can’t get checkbox)
我有一个自动程序可以在单声道和立体声之间切换音频。它曾经有效,但 Mojave 更新似乎破坏了它。我已经授予它可访问性许可,但仍然没有运气。可能是什么问题?
tell application "System Preferences"
launch
reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess"
tell application "System Events" to tell process "System Preferences"
delay 0.5
click the checkbox "Play stereo audio as mono" of window "Accessibility"
end tell
end tell
tell application "System Preferences" to quit
报错信息如下:
The action “Run AppleScript” encountered an error: “System Events got
an error: Can’t get checkbox "Play stereo audio as mono" of window
"Accessibility" of process "System Preferences".”
提前致谢!
尝试一下...
tell application "System Preferences"
reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess"
end tell
tell application "System Events"
repeat until exists of checkbox "Play stereo audio as mono" of group 1 of window "Accessibility" of application process "System Preferences"
delay 0.1
end repeat
click checkbox "Play stereo audio as mono" of group 1 of window "Accessibility" of application process "System Preferences"
end tell
tell application "System Preferences" to quit
我有一个自动程序可以在单声道和立体声之间切换音频。它曾经有效,但 Mojave 更新似乎破坏了它。我已经授予它可访问性许可,但仍然没有运气。可能是什么问题?
tell application "System Preferences"
launch
reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess"
tell application "System Events" to tell process "System Preferences"
delay 0.5
click the checkbox "Play stereo audio as mono" of window "Accessibility"
end tell
end tell
tell application "System Preferences" to quit
报错信息如下:
The action “Run AppleScript” encountered an error: “System Events got an error: Can’t get checkbox "Play stereo audio as mono" of window "Accessibility" of process "System Preferences".”
提前致谢!
尝试一下...
tell application "System Preferences"
reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess"
end tell
tell application "System Events"
repeat until exists of checkbox "Play stereo audio as mono" of group 1 of window "Accessibility" of application process "System Preferences"
delay 0.1
end repeat
click checkbox "Play stereo audio as mono" of group 1 of window "Accessibility" of application process "System Preferences"
end tell
tell application "System Preferences" to quit