FLV's causing black screen when called...
Hello all,
I have a question about the Flash projector going full screen with external FLV files. I have a project that has a simple interface that calls up FLV videos using the flvPlayback component. The project will be used on a DVD so I will be using the projector to deliver the presentation. So far, it opens in window mode. I have applied the stage.scalemode function to prevent the stage from scaling. I would like the projector to go full screen so the projector doesn't open in random places on the screen, so I have implemented this code:
stage.displayState=StageDisplayState.FULL_SCREEN;
stage.scalemode=StageScaleMode.NO_SCALE;
This is working great. I have run into a problem with my FLV's because the projector is fullscreen, the screen just turns black which effectively kills the projector. I have learned that this may be caused by the FLV because it "takes over" the screen. A solution that has worked for others is:
FLVinstancename.fullScreenTakeOver=false; (the default is set to true).
I have included this on a blank layer where the particular FLV is located (each video is in a seperate scene). After including this script, the screen still goes black when the FLV is called for. I am not sure if I implemented this correctly as it seems to work for others. Is there a particular way to set the full screen take over to false or have I missed something?
Any help or comments is greatly appreciated. Thank you in advance.