FLV player component - click to view fullscreen

Hey there,

So I’m building a flash presentation and one slide has video. I have a flv component on the stage and the user wants the video to initially appear at a smaller size and then to click on it to launch the movie in fullscreen and to play. The playing is no problem but it doesn’t want to launch fullscreen. Any ideas? Code below:

// VIDEO
moviePlayer_mc.fullScreenTakeOver = false;
moviePlayer_mc.addEventListener(MouseEvent.CLICK, launchFullScreen);

function launchFullScreen(e:MouseEvent){
trace(“FULLSCREEN FUNCTION FIRED”);
moviePlayer_mc.play();
//moviePlayer_mc.enterFullScreenDisplayState();
moviePlayer_mc.fullScreenTakeOver = true;
}

Any help much appreciated.