We've looked at the Acrobat IAC docs, but none of the commandline,
DDE, or OLE commands seem to give us the control we need. Nor does
InvokeVerb to launch the associated print command based on Windows
Explorer file associations.
We've looked at some third-party tools, but it's difficult to tell
from online documentation whether these meet our needs completely.
And, most seem like overkill, since we don't need to create the PDFs.
Any recommendations, code examples, or hints would be greatly
appreciated.
Thanks,
Bruce
You may have noticed my posting on "printer control", which specifies a
similar requirement. I am coming to the conclusion that PDF was not such a
great format to have chosen because this stuff seems so hard to do, but
OTOH what else is there? Word is useless at printer control - & windows
will let you change the tray of the 1st page but little else, and anyway we
need to do this programatically, as yourselves. So if you do find a way
(preferably which doesn't rely on windows) I'd love to hear it.
Am I missing the point though, and PDF is simly the wrong format to have
chosen for this. There must be big print houses that do this stuff -
presumably they don't require operator intervention?
Thanks
Graham Nicholls
--
Rock Computer Consultancy:
The answer's always "yes"!
Graham Nicholls wrote:
Graham,
I'm sure you will get definitive answers to your questions from the
experts here, but if the definitive answer is No, let me offer a
somewhat different approach. This describes the way a similar problem
was solved a decade ago (long ago, far away) and thus may not be
relevant; but the logic of it may appeal to you.
We converted all documents to some language the RIP understood (it was a
fairly sophisticated RIP that accepted PS, TIFF, CCITT, and a couple of
other formats IIRC, in addition to its native PCL) and stored them on
the network in our own working directories. We then prepared a job
ticket, using a piece of Kodak software called Lionheart, I think (or
something like that) on which we listed each file in the job and the
paper size and type for that file and whether it was duplex. (There was
also the usual header info about number of copies, ownership, customer,
accounting info, etc.; but that's not relevant here.) I don't think we
had to specify the number of pages in the file, but perhaps we did.
On submitting the job ticket, the system put it in a queue in which a
human print manager could assign printing sequence (based on priorities)
and select which job to send to which printer. Once the manager released
the job, it sat in a queue for the selected RIP, and the Lionheart
system managed the details of sending the individual print files
interspersed with the required PCL commands to get the sheets to come
out of the right trays, etc.
On this particular system, an entire job (any number of files) would be
RIP'd before page 1 printed; but I don't see any particular reason that
should be a requirement for your solution.
Maybe something in that description will trigger a thought as to how to
solve your current problem.
HTH,
Dick
-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----
Lionheart lets you add the codes yourself, I think they are called KDK's.
I've implemented this sort of thing a couple of times but it is very printer
dependent.
--
Tony Edgecombe
www.frogmorecs.com/ng
Software for printing
Here is what I was originally considering (sorry, it's a Windows and
HP printer solution, which fits our environment):
- Preinstall a printer that prints to a file
At print time --
- Use the Windows shell InvokeVerb method with the "printto" verb,
specifying the print-to-file printer, to create a printfile for the
document.
- Append the needed PJL commands to the print file to specify printer
settings like copy count, page size and orientation, and separator
info.
- Copy the print file to the target printer.
Thanks again,
Bruce
How do we edit the print to file ".prn" files.
The tray options have been specified as escape sequence code in PCL-XL language.
How do we edit them?
Isn't there any other option to specify the printer tray programatically?
Thanks in advance,
Mangala.
bhen...@bechtel.com (Bruce Hensley) wrote in message news:<6d2b2c2.04060...@posting.google.com>...