I have a form that pops up in flex, it is a movieclip contained within a UIComponent. Within this movieclip are form fields.
For some reason I can’t get the tab button working to be able to tab between the fields. I set up each field with a tabindex, but that doesn’t work.
Is there anything else I need to do besides this? This is basically all the code I am using:
email.tabIndex = 1;
city.tabIndex = 2;
firstName.tabIndex = 3;
etc.
Is this not working because of flex? And if so, what is a workaround?
have you tried adding a new FocusManager instance to the UIComponent that contains the movieclip? I am not sure but maybe.
Also another thing I can think of could be the tabEnabled property of the form elements and the containing Objects.
Hope it gets you closer.
Good luck,
Rob
////////// UPDATE ///////////////
Unfortunately I couldn’t make it work, but I send you my code, maybe you can do something with it.
I tried to add a movieclip and the textfields into it, but it’s the same, no TAB at all. So I simply added the textfields to the UIComponent and set all the possible tab and focus related properties to true – no luck :(.
Sorry, that’s all I could do for now. If you get the answer please let me know, I am keen.
Cheers,
Rob