3
votes

I am working on a Flash App and its a presentation. I want the App to go full screen but there is an FLVPlayBack component playing a video now instead of the App the StageDisplayState.FULL_SCREEN turns the video to full screen.

When I remove the video it works fine but I need that video there.

Any idea what is going wrong here ?

_Iza

1

1 Answers

2
votes

set the fullScreenTakeOver parameter of your FLVPlayback Component to false before the FULL_SCREEN Code. Hope that will resolve that Video takeover issue.

var yourFLVPlaybackComp:FLVPlayback = new FLVPlayback();
    yourFLVPlaybackComp.fullScreenTakeOver = false;