Sto provando a fare alcuni script GUI con AppleScript ma ogni volta che provo ad usare il comando click, funzionerà ma causerà un errore. Se uso un'istruzione try
, funziona bene, ma non dovrei farlo. Ecco un codice in cui ho iniziato a attivare Elementi vocali:
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
Il pulsante di opzione "On" viene cliccato, ma viene visualizzato anche questo errore:
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"
Qualcuno può dirmi cosa sto facendo male?