Copy link to clipboard
Copied
I need to place a small warning text on each page of indesign documents that will not display on the exported PDF when viewed on screen but will print if the PDF is printed. I'm wondering if it's possible with these requirements:
Anyone have any ideas? I found a few ideas for doing this manually online, but I can't seem to get any of them to work with my current version of INDD (2015). In addition I need to be able to script whatever solution is available, and I'm not as familiar with INDD scripting as I am with AI.
Copy link to clipboard
Copied
I think it's not possible. A watermark is intended to remain whatever you do with the file. You could imagine a specific layer within InDesign and export your PDF with layers preserved (1.6+).
So the user can hide the layer to see. But as he can hide it, your pseudo watermark won't print neither.
You could think of an attached acrobat script that would force display the watremark on print but user can disable Javascript so that's a deadend too.
Good luck and feel free to come back to us if you find something working.
Loic
Copy link to clipboard
Copied
For the attached script for force print the watermark, could that be attached in indesign?
Copy link to clipboard
Copied
Loïc is right! but Why not write a JavaScript to insert it directly in the pdf?
Here, you can add a watermark not screen visible but printable and you can add a password to your pdf to avoid modifications (delete the watermark for example).
Copy link to clipboard
Copied
Create a layer, call it 'Watermark', and place your watermark on that layer.
Create a PDF preset, call it 'Watermark', check 'Non-printing objects'.
When you export the PDF, uncheck the 'Print layer' checkbox in the 'Watermark' layer's options. Simple to script:
app.documents[0].layers.item('Watermark').printable = false;
then export the document.
When you print the document, check the 'Print layer' checkbox in the 'Watermark' layer's options, then print.
Peter
Copy link to clipboard
Copied
Hi Peter,
I think our friend wants the opposite. he wants the watermark to print but not to display on screen
Here is the issue
Loic
Copy link to clipboard
Copied
Ah, of course, I should have read better. Thanks, Loic.
P.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now