Hi,
If you're using only postscript printers, you can suppress printing via a PRINT field, of all things. Using a PRINT field coded as:
{PRINT \p page "/#copies 0 def"}
prevents pages from printing. If you want to blank pages, instead of making them unprintable, use:
{PRINT \p page "erasepage"}
on each page to be suppressed. In the body of the document, the second field will suppress everything above the field, but
everything below it will still be output. Putting such a field into the header or footer results in blank pages being printed for
all pages to which that header/footer applies, but has no effect on PDF creation.
Cheers
--
macropod
[MVP - Microsoft Word]
-------------------------
ibvalentine said:
There doesn't seem to be a non-programmable way of making a Word doc
unprintable. Does anyone know an easy solution? Making a Word doc
unprintable?
I would appreciate any comments. Thanks!
Yes, I believe the a postscript printer is being used. I will implement your solutions (as soon as I figure out how to do it). Thanks for your help!