Stack overflow when inserted into flash player 10

Has anyone faced this problem? Everything I do is tabbed from one TextInput component to another.

I have reduced my TitleWindow (container for TextInputs) to only these two components and I still get this error. I assumed it had something to do with installing flashplayer, so I uninstalled and reinstalled, but I still get the same behavior.

Any help / tips / best guess would be awesome, thanks.

+1


source to share


2 answers


I am using FlashPlayer 10 and just tried the following with no error.

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:TitleWindow>
        <mx:TextInput id="textA">

        </mx:TextInput>

        <mx:TextInput id="textB">

        </mx:TextInput>
    </mx:TitleWindow>
</mx:Application>

      



Is there anything else with tabs? Some custom code?

+1


source


Do you have any handlers for, say, focus events or the like on text fields? As far as Flash is concerned, all that happens when you use a tab is the focus change. Stack overflow is usually the result of recursion, so something like this would be my first guess.



Or are you saying that your application has nothing but components?

0


source







All Articles