Thanks Carlos, That's not what I need though. I need to know if fullscreen is enabled via html tag (a security safeguard) before I show the button to go into fullscreen.
-dave On Sat, Mar 21, 2009 at 8:46 PM, carloscarvalhar <[email protected]>wrote: > about full screen: > switch (Application.application.stage.displayState) { > case StageDisplayState.FULL_SCREEN: > /* If already in full screen mode, switch to normal mode. */ > Application.application.stage.displayState = StageDisplayState.NORMAL; > break; > default: > /* If not in full screen mode, switch to full screen mode. */ > Application.application.stage.displayState = StageDisplayState.FULL_SCREEN; > } > > >

