In the help there is an example under "Displaying full-screen windows":
<?xml version="1.0" encoding="utf-8"?> <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" applicationComplete="init()" backgroundColor="0x003030" focusRect="false"> <mx:Script> <![CDATA[ private function init():void { stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE; focusManager.setFocus(terminal); terminal.text = "Welcome to the dumb terminal app. Press the ESC key to exit..\n"; terminal.selectionBeginIndex = terminal.text.length; terminal.selectionEndIndex = terminal.text.length; } ]]> </mx:Script> <mx:TextArea id="terminal" height="100%" width="100%" scroll="false" backgroundColor="0x003030" color="0xCCFF00" fontFamily="Lucida Console" fontSize="44"/> </mx:WindowedApplication> Does this work? I just tried it here and it works for me. --- In [email protected], Ernesto Casasín <[EMAIL PROTECTED]> wrote: > > Hi, > > I apologize if I repeat this question, but it is very important for > my project to go FULL_SCREEN_INTERACTIVE in an Air application, blogs > and docs say it is possible, with this code executing on an > applicationComplete event > > systemManager.stage.displayState = > StageDisplayState.FULL_SCREEN_INTERACTIVE; > > but I get a frozen application on the PC side (it works right on the > Mac). In fact, the offending line doesn't compile on the pc version > of flex (it passes on the mac version, which is my working platform) > > > Even the simplest example (just a dummy application with a button, > going full_screen_interactive on applicationComplete event) keeps > freezing > > Please, I desesperatly need your help on this. > > > Ernesto Casasín > Abaco Digital, SL > José Pardo Sastrón, 7, 1 > 50001 Zaragoza > Tel: 34 976 29 79 80 > Fax: 34 976 20 48 50 >

