Hello All,
Would someone please be so kind as to set me up with a javascript for a Acrobat Form text field that increases a number increment by one every time the form is accessed. I would be eternally grateful as this has consumed most of my day!
Hello All,
Would someone please be so kind as to set me up with a javascript for a Acrobat Form text field that increases a number increment by one every time the form is accessed. I would be eternally grateful as this has consumed most of my day!
var a = this.getField("myHiddenField");
a.value = a.value + 1;
I'd be interested in a better solution too.