Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / GetWindowZoomed.applescript
blobadd71e01caa7d6df6f92133dc7c03a01c3364704
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set c to (get zoomed of window 1)
6 set zoomed of window 1 to not c
7 delay 2 --give the command time to finish, as it doesn't block.
8 if (get zoomed of window 1) is c then
9 --the change didn't work, so no reverting is necessary
10 error
11 end
12 set zoomed of window 1 to c
13 delay 2
14 end tell
15 end run