10.5: Automatically set iChat status when in A/V chats |
|
|
Here is a way to automatically change your status when sending or receiving audio/video invitations. You'll need to create four simple AppleScripts, and save them into your user's Library » Scripts » iChat folder (create the folder if necessary).
Open Script Editor (in Applications » AppleScript), then copy and paste these scripts, one at a time, into the Script Editor window. Click the Compile button, then select File » Save As and point to the previously-noted iChat folder. Name them as shown with each scripts code, on the second page of the hint...
Script name: iChat invited video.scpt
using terms from application "iChat"
on received video invitation theText from theBuddy for theChat
set status to away
set status message to "In conference"
end received video invitation
end using terms from
Script name: iChat invited audio.s...
|