Hello,

I have an issue with IE8 and Vista. When you toggle fullscreen and exit 
fullscreen you're unable to use a textinput. Anybody noticed this bug 
before? Any workaround? I attached a small test application to 
illustrate the problem.

Greets,
Ward Loockx



<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"; layout="absolute">
    <mx:Script>
        <![CDATA[
            import mx.events.StateChangeEvent;
            private function openFullScreen(e:Event):void
            {
                
//Application.application.stage.addEventListener(FullScreenEvent.FULL_SCREEN,testje);
                   
                Application.application.verticalScrollPosition = 0;
                Application.application.invalidateDisplayList();

                Application.application.stage.fullScreenSourceRect = new 
Rectangle(0, 0, 100, 100);
                Application.application.stage.scaleMode = 
StageScaleMode.EXACT_FIT;
                Application.application.stage.displayState = 
StageDisplayState.FULL_SCREEN;
               
           
            }
        ]]>
    </mx:Script>
    <mx:VBox>
        <mx:TextInput id="dsdsds" />
        <mx:Button label="fullcreen" click="openFullScreen(event)" />
    </mx:VBox>
</mx:Application>

Reply via email to