Page 1 of 1

Change status message via Applescript

Posted: Fri May 20, 2005 5:06 pm
by Stalkingwolf
Hi there.

it looks that i can change th status message of AdiumX via Applescript. But how?
How can i read or write something from the Adium Controller?

Sven

Posted: Mon May 23, 2005 7:34 pm
by Chris Biagini
Try this:

Code: Select all

tell application "Adium"
	set my status message to "foo"
end tell
Try this too if you're using Tiger, just because the new AppleScript dialogs are so purdy:

Code: Select all

tell application "Adium"
	display dialog "Set status message to:" default answer (my status message as Unicode text) buttons {"Cancel", "Change"} default button 2 with icon 1
	set my status message to text returned of result
end tell
:)

Posted: Wed May 25, 2005 4:28 pm
by Stalkingwolf
yes ... i think i tried it the complicated way *duh*

Thanks ;-)

Posted: Wed May 25, 2005 6:37 pm
by JediL1
Is it possible to use Applescript to set the idle time?

If so, how?