RE: [Flashcoders] Full screen video in a full screen Flash..?

2009-02-06 Thread Andrew Murphy
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Meinte van't Kruis Sent: Thursday, February 05, 2009 7:26 AM To: Flash Coders List Subject: Re: [Flashcoders] Full screen video in a full screen Flash..? if you're using flvplayback, set the property fullScreenTakeOver to false

Re: [Flashcoders] Full screen video in a full screen Flash..?

2009-02-05 Thread Meinte van't Kruis
if you're using flvplayback, set the property fullScreenTakeOver to false On Mon, Feb 2, 2009 at 3:41 PM, Matt S. mattsp...@gmail.com wrote: Are you loading the video player into its own holder mc? If you do that, then place that holder on the display list, then set if (stage.displayState

[Flashcoders] Full screen video in a full screen Flash..?

2009-02-02 Thread Andrew Murphy
Hello. :) Is there a way to have a full screen Flash (not a video) which has a video player in it, without having the video itself jump to full screen? What I'd like to do is have a Flash piece which goes full screen, then at some points in the user's interaction with it there may be a video

Re: [Flashcoders] Full screen video in a full screen Flash..?

2009-02-02 Thread Matt S.
Are you loading the video player into its own holder mc? If you do that, then place that holder on the display list, then set if (stage.displayState == StageDisplayState.NORMAL) { stage.displayState = StageDisplayState.FULL_SCREEN; } it should go full screen