IMPORTANT ANNOUNCEMENT

These forums were permanently set to read-only mode on July 20, 2022. From that day onwards, no new posting or comment is allowed on the site, but the historical content remains intact and searchable.

A new location for posting questions about PlanetPress Suite is now available:

OL Learn - PlanetPress Classic (opens in new tab)

Topic Options
#37153 - 09/08/11 07:32 PM Using a xerox dt6180 and wanting operator messages
Brice Offline
OL Newbie

Registered: 09/03/10
Posts: 12
Loc: California
Does anyone know of a way to send operator messages to the printer operator on a xerox dt6180? I tried using ~%%OperatorMessage: (Master stock is Orange) so that the operator would know exactly what to load(stock) for a postscript job coming in before releasing the job.

Top
#37175 - 09/12/11 01:52 PM Re: Using a xerox dt6180 and wanting operator messages [Re: Brice]
Raphael Lalonde Lefebvre Offline
OL Expert

Registered: 10/14/05
Posts: 4956
Loc: Objectif Lune Montreal
Brice,

I saw in a very old thread something like this:

Code:
%%OperatorMessage %o
%%EndComments
%%Title: Check the Lake System Input Queue
%PS-Adobe
(FORM) run FORM


It seems like it was added before a trigger in the file. This assumes that the document is a printer-resident form that you call using a trigger. If that's the case, then maybe you could try adding the above code to your trigger, and see if you get operator messages. You could also try adding it to the document's comments and add a tilt, like you seem to be doing.

This may or may not work, however. This is custom postscript code after all, and not really a feature of our software, so this isn't something that we support. Also, every printers may behave differently. What works on one printer may not work on another. The old thread that I mentionned did not tell if the printer was also a Xerox, so I cannot guarantee that it will work.

Regards,
Raphaël Lalonde Lefebvre

Top
#37182 - 09/13/11 11:08 AM Re: Using a xerox dt6180 and wanting operator messages [Re: Raphael Lalonde Lefebvre]
Printshop-ITD Offline
OL Guru

Registered: 12/05/07
Posts: 131
Loc: Boise, ID
Xerox machines using a FreeFlow or DocuSP front end use an XPIF job ticket (XML Data) that is appended to the start of the print data.

this is a BARE minimum XPIF ticket:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xpif SYSTEM "xpif-v02062.dtd">
<xpif version="1.0" cpss-version="2.06" xml:lang="en-US">
	<job-template-attributes>
		<job-message-to-operator syntax="text" xml:space="preserve">JOB START MESSAGE HERE</job-message-to-operator>
	</job-template-attributes>
</xpif>


XPIF code formatting can be extracted using the Xerox postscript driver and selecting "Print to File" for the printer.

Raphael's example is for a Lakes machine, which are the smaller B/W copiers with a network printer interface added.

If you have any other questions, feel free to drop me a message. I work with a Xerox HLC 180, HLC 128 (both on a 6xxx engine), and a 700 DCP along with a couple Lakes machines


Edited by Printshop-ITD (09/13/11 11:13 AM)
_________________________
Ian Adams - IT System Operator
Idaho Department of Transportation

Top