I'm working on an app that's been reskinned. When I use a TextInput
inside an Accordian, it causes the app to act "funny". I've posted a
simple example which causes the negative result. Running the
application WITHOUT a skin (as it is) works as desired. When I add
<mx:Style source='assets.css' /> to the code and rerun - I get the
error! The error would be the equivalent of clicking a TextInput to
give it focus. Upon doing so, focus is shifted elsewhere (away from the
TextInput). When this happens, you can't ever edit the TextInput. Any
ideas?
a simplified source:
<mx:Application>
<mx:Accordian width="100%" height="100%">
<mx:Canvas width="100%" height="100%">
<mx:TextInput />
</mxCanvas>
</mx:Accordian>
</mx:Application>