View Full Version : in fullscreen I just see FLVPlayback component
muimota
May 23rd, 2008, 09:13 AM
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!
muimota
May 27th, 2008, 09:38 AM
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.
http://img527.imageshack.us/img527/693/windowedresaltadoyd0.th.png (http://img527.imageshack.us/my.php?image=windowedresaltadoyd0.png)
http://img143.imageshack.us/img143/1917/fullscreenso0.th.png (http://img143.imageshack.us/my.php?image=fullscreenso0.png)
Thanks!
muimota
June 1st, 2008, 02:42 PM
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
dilipyava
October 8th, 2009, 08:38 AM
fullScreenTakeOver attribute is not there in AS 2.0
So for that?
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.