Re: set collapsed of window 1 of "QuarkXPress" to true?
Re: set collapsed of window 1 of "QuarkXPress" to true?
- Subject: Re: set collapsed of window 1 of "QuarkXPress" to true?
- From: "T.J. Mahaffey" <email@hidden>
- Date: Thu, 12 Sep 2002 16:36:45 -0500
>
set collapsed of window 1 of "QuarkXPress" to true?
It appears there isn't a collapsed property for the window object.
There are "zoomed" and "resizable" properties and such but all are read-only.
If you must manipulate the collapsed/window-shaded attribute, you'll need to
look for some kind of osax solution which may have interface commands to mimic
user interaction.
Alternatively, have you tried window bounds? Meaning, does shrinking the window
with the draggable corner to it's smallest size give you any comparable
performance gain?
If so, you could do something like:
tell application "QuarkXPress"
tell window 1
set bounds to {41, 25, 281, 154}
end tell
end tell
Just some thoughts.
Be well.
--
T.J. Mahaffey
email@hidden
_______________________________________________
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.