Re: Quark master pages
Re: Quark master pages
- Subject: Re: Quark master pages
- From: Hans Haesler <email@hidden>
- Date: Mon, 25 Mar 2002 22:07:38 +0100
On Mon, 25 Mar 2002, David DuBois wrote:
>
I get an error message from Quark tell me that I can't set a text box to the
>
master page. Can anyone help me around this? I need a text box in the bottom
>
outside corner of each master page of a facing page document.
David,
I don't get the error you're describing. However, the text box
which is created is invisible, because your value for 'bottom of
bounds' (".3") is smaller than the one for 'top of bounds' ("10.25").
And since you need a text box on each page you must address the
pages separately. 'spread 1' is "A-Master A", 'page 1' is the
left-hand page, 'page 2' is the right-hand page:
---
tell application "QuarkXPress 4.11"
make document at beginning
tell master document 1
tell spread 1
tell page 1
make text box at beginning with properties {bounds:{"10.25", "0.5", "10.55", "1.125"}}
end tell
tell page 2
make text box at beginning with properties {bounds:{"10.25", "7.125", "10.55", "7.75"}}
end tell
end tell
end tell
end tell
---
Up to you to modify my values.
---
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.