Avvia dettatura con Applescript

3

Avrei pensato che sarebbe stato facile trovarlo, ma finora non è stato per me.

C'è un modo per lanciare la dettatura (fn, fn) con applescript o dal terminale?

    
posta Arnab C. 13.09.2013 - 05:56
fonte

1 risposta

2

Puoi semplicemente simulare premendo fn due volte:

delay 0.3 -- time to release modifier keys if for example the script is run with command-R
tell application "System Events"
    key code 63
    key code 63
end tell

O da un terminale:

osascript -e 'tell app "System Events" to key code {63,63}'

Il comando osascript ha funzionato per me in Terminal ma non in iTerm 2. La voce di menu Start Dictation riproduce anche il suono in tonalità più bassa senza però mostrare il popover in iTerm 2.

    
risposta data 13.09.2013 - 10:56
fonte

Leggi altre domande sui tag