RE: Quark Print to PostScript File
RE: Quark Print to PostScript File
- Subject: RE: Quark Print to PostScript File
- From: email@hidden
- Date: Sat, 10 Mar 2001 16:00:35 -0500
I use this to send Quark pages individually. It intentionally prints the
first page twice, because by default sequential numbers are added to the
file name once the second file is created. If I toss the first file after
the script runs, my pages are correctly numbered.
tell application "QuarkXPress"
activate
tell document 1
print page 1 PostScript file "Macintosh:Desktop Folder:PSfiles:DocPage"
repeat with i from 1 to count of pages
set thePage to i
try
print page thePage PostScript file "Macintosh:Desktop
Folder:PSfiles:DocPage"
end try
end repeat
end tell
end tell
-----Original Message-----