Click to See Complete Forum and Search --> : Tab issue in a Flash form


weee
04-09-2007, 11:52 AM
I have a few form fields but for some reason when you're on the first field and then hit the TAB it won't jump to the next filed but to a random field.

Is there any way to control the order of the tab within the fields?

Webjedikungfu
04-10-2007, 08:36 PM
Use "tabIndex"

Put this into an actions layer in the same frame your form is in:
Order them how you want.
this.name_txt.tabIndex = 1;
this.email_txt.tabIndex = 2;
this.phone_txt.tabIndex = 3;
Replace my text names with yours