Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / CantSetWindowID.applescript
blobba624f7e13d856537cef970a5d0230f9da62e282
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 try
6 set id of window 1 to 4983
7 error
8 on error number num
9 if num is -2700 then error
10 end try
11 end tell
12 end run