tell application "System Events"
tell its application process "ControlCenter"
tell its menu bar 1
click its menu bar item "User"
end tell
tell its window "Control Center"
tell its group 1
set btns to its buttons
repeat with btn in btns
if name of btn = "BrilliantCorners" then
click btn
end if
end repeat
end tell
end tell
Estoy recibiendo el error
Can’t get group 1 of window \"Control Center\" of application process \"ControlCenter\". Invalid index
Por alguna razón el "grupo 1" ya no parece ser un índice válido, y no sé cómo averiguar cuál sería el nuevo índice. Soy nuevo en el mundo de los scripts y estoy tratando de aprender, así que cualquier ayuda con esto sería muy apreciada.