--
You received this message because you are subscribed to the Google Groups "CenoPDF Support Group" group.
To post to this group, send email to cenos...@googlegroups.com.
To unsubscribe from this group, send email to cenosupport...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/cenosupport?hl=en.
Hi
I figured what I was doing wrong. U have to click the up or down arrow and when the item u want appears u have to select it (left mouse click) to make it stay in the field. I have two other questions: can you use a signature pad to input data in a text box or signature box? What JavaScript can u use to ensure that a field output today's date?
Thanks again for ur time.
Barri
You are welcome.
Suppose you have a text box named abe. You can go to CenoPDF > Document Settings > Javascript to add the following script :
var d = new Date();
this.getField("abc").value = d.toLocaleDateString();
It will show the current date any time you open the PDF file.
Yang