Recently I have tried to convert the flash site to standalone projector with full-screen but the video using FLVPlayback will always take over the entire screen.
Fortunately there is a property called “fullScreenTakeOver” which will prevent FLVPlayback to take over the entire screen:

?View Code ACTIONSCRIPT1
2
3
4
5
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.displayState = StageDisplayState.FULL_SCREEN;
 
myFLVPlayback.fullScreenTakeOver = false;
myFLVPlayback.source = "video.flv";

But wait! Although the [...]

continue reading.....