Tengo el siguiente AppleScript que se supone que cambia automáticamente al usuario Administrador. Funcionó en Big Sur, pero no funciona en Monterey.
tell application "System Events"
tell its application process "ControlCenter"
tell its menu bar 1
click its menu bar item "barmar"
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 = "Administrator" then
click btn
end if
end repeat
end tell
end tell
end tell
end tell
Obtiene el siguiente error:
Eventos del sistema tiene un error: No se puede obtener el grupo 1 de la ventana "Control Center" del proceso de aplicación "ControlCenter". Índice no válido".
número -1719 del grupo 1 de la ventana "Control Center" del proceso de aplicación "ControlCenter"
La lista de usuarios aparece, pero falla en "decirle a su grupo 1".