Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / CantSetWindowClosable.applescript
blob43331a79379c2c6cded8fa604e4b06b03d86ce89
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set c to (get closeable of window 1)
6 try
7 set closeable of window 1 to (not c)
8 --should not get here
9 set closeable of window 1 to c --restore
10 error
11 on error number num
12 if num is -2700 then error
13 end try
14 end tell
15 end run