Hi All,
I’m having some problems when using full screen on Flash.
I have my stage content and also a FLV running I want the whole stage to go fullscreen when I hit the fullscreen button not only the flv.
I’ve tried using the player fullscreen button and also created a button of my own but both of them turn only the movie in fullscreen!
here is the code I used for my button
// full screen
fullscreen_mc.addEventListener(MouseEvent.CLICK, fullScreen);
function fullScreen(event:MouseEvent):void {
if (fullscreen_mc.currentFrame == 1){
stage.displayState=StageDisplayState.FULL_SCREEN;
fullscreen_mc.gotoAndStop(2)
}
else {
stage.displayState=StageDisplayState.NORMAL;
fullscreen_mc.gotoAndStop(1)
}
}
Any help would be appreciated!!!
thanks