简体   繁体   中英

Flash FLVPlayBack Video goes FULLSCREEN instead of the Application

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

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;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM