Как я могу заставить распознавание голоса AppleScript слушать любое слово? - PullRequest
1 голос
/ 06 октября 2011

Как я могу заставить распознавание голоса AppleScript слушать любое слово? Это то, что я до сих пор:

tell application "System Events"
    keystroke "c" using {command down}
end tell

tell application "iCal" to activate

tell application "System Events"
        keystroke "n" using {command down}
    keystroke "v" using {command down}
    keystroke return
end tell

Я хотел бы заменить копию в первой строке, чтобы прослушать любые слова.

1 Ответ

3 голосов
/ 07 октября 2011
tell application "SpeechRecognitionServer"
    set answer to listen for {"yes", "no"} with prompt "prompt"
    --hold the listening key (by default escape) to record an answer
end tell

Сначала должны быть включены произносимые предметы:

См. http://macscripter.net/viewtopic.php?id=24662 для получения более подробных инструкций.

...