Does anyone know how to force capitalization within a field?
I tried placing the script in both format and keystroke script under the format tab:
EstProjectReserves.value.toUpperCase()
Can anyone help?
My Product Information:
Acrobat Pro 8.1.2, Macintosh
Custom keystroke (to capitalize on keystroke):
if (event.willCommit == false) {
event.change = event.change.toUpperCase();
}
For the custom format field (to format on exit):
event.value = event.vlaue.toUpperCase();
George Kaiser