topical media & game development

talk show tell print

component-screen.mx

component-screen.mx [swf] flex


  <?xml version="1.0"?>
  <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml">
  <mx:Script>
   <![CDATA[
    import flash.display.StageDisplayState;
    import mx.managers.SystemManager;
  

handler(s)


  public function toggle():void {
     try {
     switch (systemManager.stage.displayState) {
       case StageDisplayState.FULL_SCREEN:
            systemManager.stage.displayState = StageDisplayState.NORMAL;
            break;
       default: systemManager.stage.displayState = StageDisplayState.FULL_SCREEN;
       break;
       }
     } catch (err:SecurityError) {
                          // ignore
       }
    }
   ]]>
  </mx:Script>
  </mx:VBox>
  


(C) Æliens 27/08/2009

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.