Now, groups can retrieve a list of the contacts in that group. I probably should...
[adiumx.git] / ASUnitTests / ChangeStatus.applescript
blobfc2c90166fef3ad7310125b99f5543a4c698799d
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 tell account (HandyAdiumScripts's defaultAccount)
6 go offline
7 if (get status type) is not offline then error
8 go online
9 if (get status type) is not available then error
10 end tell
11 end tell
12 end run