Tôi tìm thấy một chủ đề trong đó có Applescript sau:
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
Tôi đã thử nó ra và nó hoạt động. Tất cả bạn phải làm là thay đổi "tiếng Đức" sang ngôn ngữ bạn chọn.
Ngoài ra, tôi có thể đề xuất một ứng dụng có tên FastScripts , cho phép bạn chạy applescript từ thanh menu trên cùng hoặc từ phím tắt.
Hy vọng điều này giải quyết vấn đề của bạn!