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:

stage.scaleMode = StageScaleMode.NO_SCALE;
stage.displayState = StageDisplayState.FULL_SCREEN;

myFLVPlayback.fullScreenTakeOver = false;
myFLVPlayback.source = “video.flv”;

But wait! Although the video won’t […]

continue reading.....