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

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