Re: Quark-group boxes
Re: Quark-group boxes
- Subject: Re: Quark-group boxes
- From: Hans Haesler <email@hidden>
- Date: Sun, 23 Feb 2003 10:13:43 +0100
On Sat, 22 Feb 2003, Jeff Spencer wrote:
>
I have a script that selects a bunch of quark boxes (quark 4.11), and I
>
wish to move them as a group. How do I do this? In quark 5 i can
>
address them simply with "tell group box 1".
Address the selection:
---
tell document 1 of application "QuarkXPress 4.11"
activate
tell selection
set {y, x} to origin of bounds as list
set origin of bounds to {((y as real) + 20), ((x as real) + 20)}
end tell
end tell
---
If the measurement units of the document are set to "Points" then
the group is moved 20 pt down and 20 pt to the right.
---
Hans Haesler <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.