Hi everybody.
I need to bring to front (or send to back) a selected item on Quark.
Is there some command to do such thing from an Applescript script?
Thanks
Hi everybody.
I need to bring to front (or send to back) a selected item on Quark.
Is there some command to do such thing from an Applescript script?
Thanks
According to Shirley Hopkin’s excellent book «AppleScripting QuarkXPress»…
tell application "QuarkXPress Passport"
if (current box exists) then
tell document 1
move current box to the back
-- move current box to the back
-- move current box to before first text box
-- move current box to after first text box
end tell
end if
end tell
Thanks. Just what I was looking for.