TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Subject:collating on an HP 8500--SOLVED From:Dick Margulis <margulis -at- fiam -dot- net> To:TECHWR-L <techwr-l -at- lists -dot- raycomm -dot- com> Date:Sat, 10 Jun 2000 16:19:06 -0400
Folks,
For those who have from time to time shared my frustration in sending
collated jobs from Acrobat to an HP 8500 on an NT network, here is how
you can access the "mopier" (RIP once, print many) function for a PDF
file:
1. Print a single copy TO FILE from Acrobat, after setting up desisred
printing parameters (paper size, tray, output bin, etc).
2. Name the file mydoc.prn (i.e, keep it to 8.3 format), and place it
in a directory you can get to easily from a command prompt
(C:\temp, for example)
2. Open the PRN file in Wordpad
The first few lines will look something like this:
_%-12345X -at- PJL JOB
@PJL ENTER LANGUAGE = POSTSCRIPT
%!PS-Adobe-3.0
3. Insert a new second line:
@PJL SET QTY=4
(substituting whatever number of copies you actually
want for the "4")
The first few lines should now look something like this:
_%-12345X -at- PJL JOB
@PJL SET QTY=4
@PJL ENTER LANGUAGE = POSTSCRIPT
%!PS-Adobe-3.0
4. In a DOS command window, navigate to the directory where you stored
the mydoc.prn file
5. Type the following command:
copy mydoc.prn \\servername\printername
and then press Return (servername and printername will be a
maximum of 8 characters; you should be able to figure out
servername by looking in Network Neighborhood; you may need
to get printername from your system admin)
The LCD panel should display "Printing set 1 of 4 [or whatever],"
indicating that you have accomplished what you set out to do.
Thanks to Arlen Walker, who suggested the approach of printing to file
from Word and from Acrobat and then inspecting the results to find the
needed workaround.