tabIndex fails in an AS3 swf loaded into a flex app
Posted
by quoo
on Stack Overflow
See other posts from Stack Overflow
or by quoo
Published on 2009-06-25T21:39:10Z
Indexed on
2010/04/20
21:03 UTC
Read the original article
Hit count: 531
I feel like I'm missing something really simple here. I'm loading a AS3 swf containing a form (created by one of our designers) into a flex app. The swf's tabIndex properties work fine when the swf is viewed by itself, however, once it's loaded into the flex app:
<mx:SWFLoader source="form.swf" top="20" horizontalCenter="0" id="formSwf" complete="swfCompleteHandler(event)"/>
the form fields stop receiving focus on tab. I've been looking at the FocusManager in flex, for some sort of solution, but I can't seem to find any examples, and I'm not entirely sure I'm looking in the right place. Am I stuck redoing this form in flex?
© Stack Overflow or respective owner