Has anybody found a way to make the tabIndex property work correctly in MX? I've tried all of the following with no success:
textfield.tabIndex = 1;
this.textfield.tabIndex = 1;
_root.textfield.tabIndex = 1;
MCname.textfield.tabIndex = 1;
_level0.textfield.tabIndex = 1;
Nothing works! My textfields are "input text" and I have several combo boxes, radio buttons, and check boxes. I really don't want to write a custom "setFocus" script but if I can't get tabIndex to work, I may have to.
Any ideas???
There's always a better way. The fun is trying to find it!
textfield.tabIndex = 1;
this.textfield.tabIndex = 1;
_root.textfield.tabIndex = 1;
MCname.textfield.tabIndex = 1;
_level0.textfield.tabIndex = 1;
Nothing works! My textfields are "input text" and I have several combo boxes, radio buttons, and check boxes. I really don't want to write a custom "setFocus" script but if I can't get tabIndex to work, I may have to.
Any ideas???
There's always a better way. The fun is trying to find it!