Hoping to find a way to convert entered text to all CAPS when a user leaves the input field. For instance, if a user types 'abcd', I need to display 'ABCD'.
Any thoughts?
George Kaiser
From the Adobe Acrobat JS API Reference:
Change all keystrokes to upper case.
// Custom Keystroke for text field
event.change = event.change.toUpperCase();
[url=http://www.adobe.com/devnet/acrobat/]Acrobat 9 SDK[/url]
George Kaiser