Ho problemi con una semplice parte di script, dove voglio ottenere la proprietà dock preferences
di System Events. Ho il seguente:
tell application "System Events"
tell appearance preferences
set ap_prefs to (get the properties)
set ap_prefs to the properties
end tell
set a_pref to the properties of appearance preferences
tell dock preferences
set d_prefs to (get the properties)
end tell
set d_pref to the properties of dock preferences
end tell
Nel codice sopra accendo appearance preferences
in tutti i modi illustrati sopra, ma non dock preferences
. Dà un errore error "System Events got an error: AppleEvent handler failed." number -10000
.
Quindi cosa sta succedendo e perché si sta dando errore solo con dock? Qui @dj_bazzie_wazzie dice:
Error -10000…most of the time it is not a target error but an incomplete command or wrong usage of brackets.
Ma non riesco a capire quale sia il modo corretto. Ho provato tutto quello che posso pensare, anche perché non lancia l'eccezione per appearance preferences
?
Saluti
Ho anche aperto questa domanda su Stack Overflow, ne chiudo una quando ottengo una risposta.