I have a form created in Adobe Acrobat Profess 8. In this form I have a text field. If my user enters a whole number like, "29"
I want the number to convert to a number that move the decimal place 2 spaces to the left, like ".29".
Do anyone have any suggestions or, can someone please help me?
You can use the "isNaN()" and "Number()" functions to weed out nat a number and format a number string to a number and the following custom format script:
// if the event value is a number
if ( isNaN(event.value) == false )
event.value Number(event.value)/100; // format as a number and divide by 100
George Kaiser