Re: Printing Quark Plates
Re: Printing Quark Plates
- Subject: Re: Printing Quark Plates
- From: David Blishen <email@hidden>
- Date: Wed, 24 Jul 2002 20:07:49 +0100
Have you tried something like (syntax may be a little out, since I don't
have Xpress installed at home) this....
tell application "QuarkXPress"
activate
tell document 1
Repeat with x from 1 to (count of pages)
Print page x plates {"TYPE"}
end
end tell
end tell
Just a thought....
David
>
From: Bill Metzinger <email@hidden>
>
Date: Wed, 24 Jul 2002 14:53:58 -0400
>
To: applescript <email@hidden>
>
Subject: Printing Quark Plates
>
>
Hello all,
>
The simplicity of my problem is maddening. I'm in OS 9.2.2 with AS
>
1.8.2b3. I have a QuarkXPress doc with multiple pages. It has a color I
>
created called "TYPE." I want to print only my "TYPE" plates with the
>
following:
>
>
tell application "QuarkXPress"
>
activate
>
tell document 1
>
print plates {"TYPE"}
>
end tell
>
end tell
>
>
I get only a "TYPE" plate for page 1 and for the remaining pages I get
>
all plates. If I stipulate the page on my print line then I get what I
>
want:
>
>
print page 2 plates {"TYPE"} -- gives me only "TYPE" from page 2
>
>
print page 3 plates {"TYPE"} -- gives me only "TYPE" from page 3 and so
>
on
>
>
print (pages 1 thru whatever ) plates {"TYPE"} -- acts like my first
>
example of giving all plates after page 1
>
>
How can I get all my "TYPE" plates at one time?
>
>
TIA
>
Bill
>
_______________________________________________
>
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.
_______________________________________________
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.