Problema con il comando Click - AppleScript

0

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?

    
posta Mason 17.08.2014 - 01:17
fonte

1 risposta

1

Sembra che anche se l'elemento dell'interfaccia utente si presenta come radio group in 'Risultato', devi specificare radio group 1 per il comando clic per funzionare.

    
risposta data 17.08.2014 - 02:21
fonte

Leggi altre domande sui tag