В настройках iChat на панели «Оповещения» вы можете выбрать событие Message Received
, а затем установить флажок под надписью Run an AppleScript script:
и использовать AppleScript для изменения голоса в зависимости от пользователя и произнесения сообщения.
using terms from application "iChat" on message received theText from theBuddy for theChat if (theBuddy = "Joe") then set theVoice to "Bubbles" else set theVoice to "Bruce" end if say theText using theVoice end message received end using terms from
К сожалению, в OSX нет голоса бурундука.
Редактировать:
К счастью, есть способ подражать голосу бурундука. :)
if (theBuddy = "Joe the Chipmunk") then say theText using "Bruce" pitch 75 speaking rate 250 else say theText using "Bruce" end if