Our project is build in AS2. It's imported into an AS3 console written in Flex.

The problem is that the input type TextFields in the embedded movie are stealing focus from the other TFs in the container console. I can tab between the TFs in my movie. If I click inside one of the TFs in the container, as soon as I let go of the mouse focus goes immediately back to the last TF which had focus in the embedded movie.

I'm able to reproduce the problem in a simple test movie. Here's pretty much all the code related to the TFs


           // each TF is inside of its own container MC
           inputClip.tabChildren = true;
           //
           var tf:TextField = TextField(inputClip.inputText);
           tf.tabEnabled = true;
tf.tabIndex = 1000+i; // this is inside of a loop, there are a total of 5 clips
           tf.type = "input";
           tf.selectable = true;

How do I fix this? My work is screwing up the project for the rest of our team members :-(

Thanks!
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to