Posts

Post not yet marked as solved
3 Replies
4.3k Views
I have simple script to turn down the brightness of my MacBook Pro via an AppleScript. This worked fine in BigSur, but has stopped working after I upgraded to Monterey 12.0.1. The script is as follows: tell application "System Preferences" reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays" end tell tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display" set value of value indicator 1 of slider 1 of tab group 1 to 0.0 end tell ..error is as follows in script editor: error "System Events got an error: Can’t set window \"Built-in Retina Display\" of process \"System Preferences\" to 0.0." number -10006 from window "Built-in Retina Display" of process "System Preferences" Any suggestions on what to modify to get it working again?
Posted
by Blokie.
Last updated
.
Post marked as solved
3 Replies
1.6k Views
I have simple scripts to turn down the brightness of my MacBook via an AppleScript. This worked fine in Catalina 10.15.3, but has stopped working after I upgraded to 10.15.4.The script is as follows:tell application "System Preferences" reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"end telltell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display" set value of value indicator 1 of slider 1 of group 1 of tab group 1 to 0.0end tell..error is as follows:error "System Events got an error: Can’t get slider 1 of group 1 of tab group 1 of window\"Built-in Retina Display\" of process \"System Preferences\". Invalid index." number -1719from slider 1 of group 1 of tab group 1 of window "Built-in Retina Display" of process "System Preferences"
Posted
by Blokie.
Last updated
.