Answered
In Acrobat Pro, is it possible for letters input in a text field to be automatically made uppercase?
Further, is possible to restrict the text field to letters and hyphens?
Further, is possible to restrict the text field to letters and hyphens?
You can do it using this code as the field's custom Keystroke script:
event.rc = /^[-a-z]*$/i.test(event.change);
event.value = event.value.toUpperCase();Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.