私は実際にこのスクリプトを動作させています (完全な初心者である私にとっては驚きです) が、このスクリプトに必要のない余分なコードが含まれていないことを確認したかっただけです。または、これを行うより良い方法があればコメントしてください!私は最終的に一連の音声コマンドを作成しようとしています。
tell application "SpeechRecognitionServer"
set l1 to {"yes", "sure", "yes please", "open mail"}
set l2 to {"no", "no thanks", "not now"}
set no_answer to {"no", "no thanks", "not now"}
set answer to listen for l1 & l2 with prompt "Would you like me to open your email"
l1 contains answer
l2 contains no_answer
end tell
if l1 contains answer then
say "yes answer"
else if l2 contains no_answer then
say "no answer"
end if
end
前もって感謝します!