Estoy intentando realizar algunos scripts de GUI con AppleScript pero cada vez que intento usar el comando de clic, funcionará pero causará un error. Si uso una declaración try
funciona bien, pero no debería tener que hacerlo. Aquí hay un código que comencé a activar los elementos de Speakable:
tell application "System Preferences"
set current pane to pane id "com.apple.preference.universalaccess"
reveal anchor "SpeakableItems" of current pane
end tell
tell application "System Events"
click radio button "On" of radio group of tab group 1 of window 1 of application process "System Preferences"
end tell
Se hace clic en el botón de radio 'On', pero también aparece este error:
error "System Events got an error: radio button \"On\" of radio group of tab group 1 of window 1 of application process \"System Preferences\" doesn’t understand the “click” message." number -1708 from radio button "On" of radio group of tab group 1 of window 1 of application process "System Preferences"
¿Puede alguien decirme qué estoy haciendo mal?