Flashbuilder 4.6 Mobile Air Projects broke tabbing through TextInput? or am I missing something...
(1) Create a project : Flashbuilder 4.6 Mobile Air Project
(2) lay out 5 <s:TextInput> ti1, ti2, ti3, ti4, ti5
(3) compile
(test 1) hit TAB key. it does nothing when testing on the computer
(test 2) hit TAB soft key on a xoom tablet, it does nothing as well.
* shouldn't it be tabbing to the next TextInput?
* Flex 4.51 it works fine
* Flashbuilder 4.6 Desktop Air projects works fine as well
Seems to be a problem ONLY when creating a Flashbuilder 4.6 Mobile Air Project...
i've tried
(1) tabEnabled="true"
(2) tabFocusEnabled="true"
even tried
(3)
// BEGIN CODE
trace(charCode)
if(event.charCode == 9)
{
ti5.setFocus();
}
// END CODE
// charCode == 9 which is the tab key, it fails to change focus.
// when i change to a different charCode, example charCode == 0 which is the shift key, then it seems to set focus fine.
