Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Send SMS messages to mobile phones from iChat' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Send SMS messages to mobile phones from iChat
Authored by: below on Mar 15, '04 08:00:37AM
Here is a litte script to do the job. If anyone updates it, please let me know!

#!/bin/sh
# I got my wisdom from http://rsvp.atsites.de/stories/storyReader$194
# Apparently, iChat wants it that way
	osascript<<DONE 
tell application "iChat"
	repeat with a in (every account where id is "AIM:$1")
		send "$2" to a
	end repeat
end tell
DONE
Save this to a file (like "sendmsg"), `chmod +x sendmsg`, and send your messages with `sendmsg below€mac.com "This is a message to you"`(of course, use an @ when you really want to send something)

Have fun

Alex

[ Reply to This | # ]