These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Is there a way to print the time/date when a Signature Field is used?

MarlaZ
Registered: Apr 28 2010
Posts: 112

I have a Date Printed field which, when the Print button is pressed, spits out the date and time (not when it was printed, but actually the form was last opened, which is better than nothing).

Is there a way to add that functionality to the Signature Field??

This is important. If there is some other way to tie in a date/time to the Signature Field being implemented I need to know it yesterday!

I am learning how to add scripts to fields in the console... so if you have script info, do let me know where to put it because not everyone is a programmer or scripter.

Thanks to any and all who can help. I can't possibly be alone in this issue....

Marla

My Product Information:
LiveCycle Designer, Windows
Nathan3006
Registered: Dec 11 2008
Posts: 2
You can add a script to the Exit instance on the Signature Field that will populate the date field with the date. Here is the script I use:

var date = new Date();
dateFieldName.rawValue = (date.getMonth()+1) + "/" + date.getDate() + "/" + date.getFullYear();

You will need to add time script if you want it also.

Nathan
MarlaZ
Registered: Apr 28 2010
Posts: 112
Thanks Nathan, I will attempt to do this.

will post results.

Marla