In fullscreen I just see FLVPlayback component

Hi!

I am making a small demo where I mix a video and some interactivity. Now I want to do it fullscreen but all the other elements (movieclips) dissapear and I can only see the FLVPlayback component.

Thank you!

Hi!
this is how I fullscreened:

stage.displayState = StageDisplayState.FULL_SCREEN;

I send you screen captures to try to explain better what’s my problem.


Thanks!

The problem was that flvplayback has an attribute called allowtakeover, which is set by default to false and this causes that nothing else is shown on screen. I’ve fixed this way



 var videoplayer:FLVPlayback; 
 
 videoplayer = new FLVPlayback(); 
 videoplayer.source="exterm_LR4001.flv"; 
 videoplayer.width=768.0; 
 videoplayer.height=576.0; 
 videoplayer.y=0; 
 videoplayer.x=84; 
 videoplayer.skin = "SkinOverPlaySeekStop.swf"; 
 videoplayer.fullScreenTakeOver=false; 
 addChildAt(videoplayer,0);//quiero q se muestre detrás 
 

I hope this will be useful to someone