Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / GetWindowMinimized.applescript
blobcaa52b244a00826d25ef843901b4146eb4a5e75c
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set c to minimized of window 1 --for later restore
6 set minimized of window 1 to (not c)
7 if (get minimized of window 1) is c then
8 --nothing to restore
9 error
10 end
11 set minimized of window 1 to c --restore
12 end tell
13 end run