Answered
I have designed a Fillable PDF Form usnig Acrobat Pro 8.
I now want to ensure whereever input text field is provided the input should come in capital letters only.Even when the user types in small letters the same should be changed to capital letters.
I need the help on such setting if available or java script to be used for this.
regards
pramod
mumbai
// Custom Keystroke script on the Format tab
event.change = event.change.toUpperCase();
// Custom Format script on the Format tab
event.value = event.value.toUpperCase();
George Kaiser