Tagged Questions
2
votes
1answer
239 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
2answers
57 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
60 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
384 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
152 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 ...