Copy link to clipboard
Copied
I have seen this question posted often, but I just cannot find the answer, and it seems like it should be simple.
I want to create a dynamic stamp that asks the user to input the date a document was filed, which may be a date earlier than the current day (so I can't use the automatic date.)
I just can't figure out how to do this, whether using app.response or anything else. I have looked over Thom Parker's tutorial and I still don't get it.
I have created the stamp, I have the text box ready, but I just can't figure out the script to do what I need. It seems like it should be easy, cut blearly I am missing something. I know nothing about coding or programming.
Hi, everyone - just a quick update. I figured it out, based on some online resources I found. Mercy, it shouldn't have been so difficult.
But, to recap: I need a stamp to ask the user to enter the date a document is filed. That's it. We can't use the date from the system as that could be a different date than the filing date. So, I looked around, pieced together different codes until I found out why it wasn't working - and I needed to upgrade my version of Acrobat so I could actually get th
...The correct answer was found in a very popular article that has been around for quite some time and is referenced quite often on this forum (well, actually the old one since this one is new).
Here it is:
Copy link to clipboard
Copied
Download and run the Acrobat Action: Filename Stamper.
This action wizard allows you to grab frombthe Document Properties whatever it is you want to stamp.
In order to get the original date that your document(s) were created you need to go to File----Document Properties----Additional Metadata
You will see the date that the document was created from there
Copy link to clipboard
Copied
Copy link to clipboard
Copied
This free tool was made for you: http://practicalpdf.com/the-practicalpdf-dynamic-stamp-dialog-creator-for-adobe-acrobat-dc/
😉
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Hi, everyone - just a quick update. I figured it out, based on some online resources I found. Mercy, it shouldn't have been so difficult.
But, to recap: I need a stamp to ask the user to enter the date a document is filed. That's it. We can't use the date from the system as that could be a different date than the filing date. So, I looked around, pieced together different codes until I found out why it wasn't working - and I needed to upgrade my version of Acrobat so I could actually get the Java Script debugger to work. Once I did that, I was able to find the main problem - finding the true name of the stamp. At any rate, if anyone is interested, here is the code I used:
--- BEGIN CODE---
var cAsk = "Date of Filing:";
var cTitle = "Date Filed with the Office of Census Data";
if (event.source.forReal && (event.source.stampName == "#2QNz0Z9AwlOH_hzlTW6puC"))
{
var cMsg = app.response(cAsk, cTitle);
event.value = cMsg;
}
--- END CODE---
Works like a charm. Thanks for all the feedback!
Mark
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Additional question: can I use acrobat x standard to create a stamp? Or do I need another program? Thanks
Copy link to clipboard
Copied
If you can edit a form field, then you can create a dynamic stamp.
Copy link to clipboard
Copied
The correct answer was found in a very popular article that has been around for quite some time and is referenced quite often on this forum (well, actually the old one since this one is new).
Here it is:
https://acrobatusers.com/tutorials/dynamic_stamp_secrets