Acrobat novice here. Slightly familiar with JS, but stumped on how to accomplish what I'm trying to do. Seems like it should be relatively easy, so I'm hopeful that someone can help walk me through it...
What do I need to do in order to get the date on which a PDF is printed to appear when the document is printed (but not appear on screen)?
I'm not inserting this on a form, just on a regular document. I need people to be able to keep track of when they printed that hard copy of the document.
I was going to insert a form field in the footer and use the JS I've seen in other posts related to this topic, but as soon as I do that, I've turned my non-form into a form without the viewer understanding/realizing why they're suddenly viewing a form. If there's a way to add the form field without having the purple "form" message bar appear at the top of a non-form when someone opens the PDF, that would be great.
I've seen some various tutorials online that have existing PDFs inserted as watermarks, imported as layers, used as stamps... I've seen a variety of javascripts that all sound like they'd do what I need done... I just can't figure out the combination of how to put this all together! :)
Can someone give me some advice on what my options are and how to go about successfully doing this?
Thanks very much in advance for any help. I really appreciate it!
Reader can not do watermarks.
With a button field named "Button1" the following 'Will Print" action will work:
this.getField('Button1').buttonSetCaption(util.printd("mmm d, yyyy h:MM tt", oDate));
George Kaiser