Full screen mode not playing videos


Hi everyone,

I’m working on a flash desktop presentation which contains several loaded movies. I am able to play it back on a projector.exe with full screen access with a button and go back to normal screen with the esc key.

The problem is that when it gets to a video part, the whole screen turns black and nothing plays.

I can’t understand why it plays fine until it reaches a video and then stops.

Is there a parameter that I’m missing ?

Here’s a partial code from the actions layer

import fl.video.;
import fl.utils.
;
import fl.events.*;

StageDisplayState.FULL_SCREEN;
StageDisplayState.NORMAL;

fullScreenHandler = function( event:FullScreenEvent ) {};
stage.addEventListener( FullScreenEvent.FULL_SCREEN, fullScreenHandler );

var timer:Timer = new Timer(10000,1);
navbar.visible = false

navbar.next_btn.addEventListener(MouseEvent.CLICK, nextButtonClick);
navbar.prev_btn.addEventListener(MouseEvent.CLICK, previousButtonClick);
navbar.play_btn.addEventListener (MouseEvent.CLICK, playButtonClick);
navbar.pause_btn.addEventListener(MouseEvent.CLICK, stopButtonClick);
navbar.menu_btn.addEventListener(MouseEvent.CLICK, menuButtonClick);
navbar.screen_btn.addEventListener(MouseEvent.CLICK, fullscreenButtonClick);

timer.addEventListener(TimerEvent.TIMER_COMPLETE, hidemenu);
stage.addEventListener(MouseEvent.MOUSE_MOVE, showmenu);

function hidemenu(e:TimerEvent):void{
navbar.visible = false;
}

function showmenu(e:MouseEvent):void{
navbar.visible = true;
timer.start();
}

function fullscreenButtonClick(e:MouseEvent):void

{
stage.displayState = StageDisplayState.FULL_SCREEN;

}