Re: Duplicating boxes in Quark
Re: Duplicating boxes in Quark
- Subject: Re: Duplicating boxes in Quark
- From: JJ <email@hidden>
- Date: Tue, 22 May 2001 10:50:18 +0200
>
Hi List,
>
>
I'm having a heck of a time trying to duplicate a bunch of text and picture
>
boxes. I can duplicate every generic box of page 1, but if there are 15
>
boxes on the page that are selected, it duplicates every box 15 times!
>
>
I tried looping through the object reference of every box and it duplicate
>
just one bax 15 times!
>
--
Archaic but quickly works!
tell application "Quark 4.11"
activate
tell document 1 to set selected of every generic box of page 1 to true
copy
paste
do updates -- redraw
end tell
JJ