Sto cercando di abilitare la dettatura con applescript e finora ho il seguente che funziona.
Ma, come faccio a impostare il menu a discesa per il tasto di scelta rapida usando AppleScript?
DiseguitoèriportatoilcodiceAppleScript:
tellapplication"System Preferences"
reveal pane id "com.apple.preference.speech"
tell application "System Events"
tell process "System Preferences"
tell window "Dictation & Speech"
tell tab group 1
click radio button "Dictation"
tell radio group 1
if value of radio button "On" is 0 then
click radio button "On"
end if
end tell
end tell
if sheet 1 exists then
tell sheet 1
click button "Enable Dictation"
repeat while sheet 1 exists
end repeat
end tell
end if
end tell
end tell
end tell
quit -- optional
end tell