Tagged Questions

2
votes
1answer
266 views

Change iChat settings with applescript?

Is there a way to create a script that will change the preferences of iChat to run the script when a message is received? In other words, I want to make a script to change the iChat preferences to ...
0
votes
1answer
24 views

How to send a message using iChat and AppleScript

I have a need to send a message to a number of people to let them know when an event is occurring. It is always the same list of people, and always the same event, so I would like to script it. The ...
0
votes
2answers
69 views

How can I test if an image is empty in AppleScript?

I have the following applescript. I have it set to run in ichat when i recieve an IM. It notifies me via growl of new messages: on notify_growl(theName, theTitle, theDescription, theImage) ...
0
votes
1answer
65 views

Setting iChat status from a web app

I'd like my web app to be able to set ichat status: Available or Away + Custom message Basically my web app is related to tracking and status so at present, you have to remember to update both (if ...
0
votes
1answer
441 views

Get contents of iChat message via Applescript

I'll preface this with the fact that I'm new to applescript... I have iChat set up to run this script whenever a new message is received: using terms from application "iChat" on message ...
0
votes
1answer
160 views

What's wrong with this Applescript?

My app has some rudimentary applescriptability. There is one method (receivedInstantMessage) that takes a single parameter (message) and passes it to my app which then processes it. The following ...