Question about tab index

Anyone can explain me how works tab index ?

I have a page with 10 fields, and I want to put a tab index on each field. How I can do this ?

Thanks

Alex

Give each of the texfields an instance name!
Then click on the frame in the timeline where the textfields are in!
Then type in some actions:

textfield1.tabIndex = 1
textfield2.tabIndex = 2
textfield3.tabIndex = 3
etc…

easy

there is also an action

textfield._focusrect = true/false

False means that the yellow rectangle won’t appear around the textfieldwhen you press tab! True means vice versa!