Re: How do you minimize an app from applescript??
Re: How do you minimize an app from applescript??
- Subject: Re: How do you minimize an app from applescript??
- From: Barbara Mueller <email@hidden>
- Date: Sun, 26 Jan 2003 20:26:27 +0100
Try this to minimize the windows:
tell application "Netscape" -- or whatever application
activate
tell application "System Events"
tell process "Netscape"
click (the third button of the front window whose subrole is
"AXMinimizeButton")
end tell
end tell
end tell
Barbara
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.