Re: New Quark Pages
Re: New Quark Pages
- Subject: Re: New Quark Pages
- From: Greg Turnquist <email@hidden>
- Date: Mon, 16 Jul 2001 16:30:17 -0500
>
Subject: New Quark Pages
>
>
I have a script where I figured out how to create a new page in a QuarkXPress
>
document,
>
but it is not copying over the Master Page elements onto the new page it
>
makes:
You need to tell it what master you want to use. It's a little harder if you
have a bunch of master pages but if I remember you can refer to them by
number and not name.
Greg
tell application "QuarkXPress 4.1"
tell document 1
set theMasterPage to master spread of current page
set theNewSpread to make new spread at end
show theNewSpread
set master spread of current page to theMasterPage
End tell
End tell