I have been trying to set the initial focus and tab order on my Flash MX movie and it does not seem to work. Here is the code:
Selection.setFocus(text_one);
text_one.tabIndex = 0;
text_two.tabIndex = 1;
text_three.tabIndex = 2;
text_one, text_two, and text_three are my instance names for the text fields and everything is on the root but when I try to view it there is no cursor in the text field and even if I click in the fields it shows no cursor and will not allow me to input text. Is the syntax incorrect in some way?
Selection.setFocus(text_one);
text_one.tabIndex = 0;
text_two.tabIndex = 1;
text_three.tabIndex = 2;
text_one, text_two, and text_three are my instance names for the text fields and everything is on the root but when I try to view it there is no cursor in the text field and even if I click in the fields it shows no cursor and will not allow me to input text. Is the syntax incorrect in some way?