Ho trovato un thread in cui era contenuto il seguente codice di applicazione:
tell application "System Events" to set p to (path to frontmost application) as string
tell application "System Preferences"
activate
reveal anchor "Dictation" of pane "com.apple.preference.speech"
end tell
tell application "System Events"
tell process "System Preferences"
tell pop up button 1 of tab group 1 of window "Dictation & Speech"
click
if (get value of attribute "AXValue") contains "English (United States)" then
click menu item "German" of menu 1
say "Dictation set to German"
else if (get value of attribute "AXValue") contains "German" then
click menu item "English (United States)" of menu 1
say "Dictation set to English"
end if
end tell
end tell
end tell
quit application "System Preferences"
activate application p
L'ho provato e funziona. Tutto quello che devi fare è cambiare "tedesco" nella lingua che preferisci.
Inoltre, posso suggerire un'applicazione chiamata FastScripts , che consente di eseguire il applescript dal menu principale barra o da una scorciatoia da tastiera.
Spero che questo abbia risolto il tuo problema!