Re: Outcome is incorrect of grouped "group boxes"
Re: Outcome is incorrect of grouped "group boxes"
- Subject: Re: Outcome is incorrect of grouped "group boxes"
- From: Peter Waibel <email@hidden>
- Date: Tue, 2 Jan 2007 18:29:33 +0100
tell application "QuarkXPress Passport"
get every picture box of document 1 whose selected = true
{picture box 39 of document "GF1F07-256_95", picture box 44
of document "GF1F07-256_95", picture box 46 ofdocument
"GF1F07-256_95"}
end tell
How can I “grab” those 3 boxes apart?
The next step would be
Tell picture box 39
--do this
End tell
Tell picture box 44
--do this
End tell
Tell picture box 46
--do this
End tell
Happy New Year Jan,
Try something like this:
tell application "QuarkXPress Passport"
set picBox_RefList to every picture box of document 1 whose selected
= true
--> {picture box 39 of document "GF1F07-256_95", picture box 44 of
document "GF1F07-256_95", picture box 46 of document "GF1F07-256_95"}
repeat with aPicBoxRef in picBox_RefList
tell aPicBoxRef
----
----
end tell
end repeat
end tell
Peter
_______________________________________________
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/mailman//archives/applescript-users
This email sent to email@hidden