Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / GetChatID.applescript
blobec8a32fbbae743e1035bd6be9116a851222bde5c
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set newChat to HandyAdiumScripts's makeNewChat()
6 set n to (HandyAdiumScripts's defaultService & "." & HandyAdiumScripts's defaultParticipant)
7 if (get id of newChat) is not n then
8 close newChat --restore
9 error
10 end
11 close newChat --restore
12 end tell
13 end run