My Dynamic Stamp Isn't Asking The User For The Date
After many hours, I finally figured out how to create a dynamic stamp that would ask the user to enter a date before completing the stamp on the document. I went back and recreated all of the steps, writing them down so that I could meet with my co-worker and set it up on her computer. We went through all of the steps but when you stamp the document, it doesn't stop to ask for the date, it just gives the background name of the stamp (#fgkpc01N46nls-tl3ZIrG) where the date should be. I thought maybe it was because I was using the original PDF stamp file so I started from scratch, saving the Excel file that I used to create the stamp as a PDF and even naming it something different. I still can't get it to work. Everything looks exactly the same between the existing stamp I created and the new one that I'm trying to create (except for the Adobe created file name beginning with #).
Here is the code that I'm using:
var cAsk = "Enter Date RFS Received";
var cTitle = "RECEIVED BY ATT";
if (event.source.forReal && (event.source.stampName == "#fgkpc01N46nls-tl3ZIrG"))
{
var cMsg = app.response(cAsk, cTitle);
event.value = cMsg;
event.source.source.info.DocumentState = cMsg;
}
Any help would be appreciated!
