These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Force Radio Button to a Text Field:

kdburley
Registered: Nov 27 2007
Posts: 18

Force Radio Button to a Text Field:
 
I'm using adobe 8 professional acroform to create my form. I have created radio buttons with export value 1-5. I will like to force the user go to a text field if they check the button that has a value 5. Thank you for your help.
 
-Kim

My Product Information:
Acrobat Pro 8, Windows
thomp
Expert
Registered: Feb 15 2006
Posts: 4411
Place this JavaScript in the Radio Button's "MouseUp" action.

event.target.setFocus();

Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script

kdburley
Registered: Nov 27 2007
Posts: 18
Thanks, for your help.