Re: Location of InDesign Library window while script is running
Re: Location of InDesign Library window while script is running
- Subject: Re: Location of InDesign Library window while script is running
- From: Christopher Stone <email@hidden>
- Date: Wed, 06 Mar 2013 13:54:10 -0600
On Mar 06, 2013, at 03:53, Bert Groeneveld < email@hidden> wrote: Hi Chris, no luck. There must be another way.
______________________________________________________________________
Hey Bert,
Maybe someone with InDesign like Shane can give you better guidance, but play around with this:
tell application "System Events" tell process "InDesign" # Make sure to use the correct name. {name, position} of windows end tell end tell
You can do properties of windows to get a more complete look at what's available to get/set.
Here's a working example using Mail:
with timeout of 1 second tell application "System Events" tell process "Mail" if window "Activity" exists then tell window "Activity" set position to {1477, 852} end tell end if end tell end tell end timeout
-- Best Regards, Chris
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden