Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / GetWindowVisible.applescript
bloba5d003a9b4d1e07d049c23905f755fee9fc4f6dc
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set c to (get visible of window 1)
6 set visible of window 1 to not c
7 if (get visible of window 1) is c then
8 --visibility change failed; nothing to revert
9 error
10 end
11 set visible of window 1 to c
12 end tell
13 end run