Skip to main content
Participant
January 21, 2013
Question

FLVPlayback and fullscreen

  • January 21, 2013
  • 1 reply
  • 635 views

We are having problems with FLVPlayback component into a simple swf standalone/executable (both mac and win too).

Flash player used 11.3

Flash editor CS 6 12.0.2.529

A FLVPLayback component is on the last (bottom) of layers , on top of it there is a full size button (in another layer), but when going in fullscreen (using debug mode or executable) the button disappears, the video is always on top.

We have also changed the index of the movie trying to swap (button <->flvplayback component) /setindex (button on children-1 and/or flvplayback on 0) without succes.

We tried also:

stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

and

stage.displayState = StageDisplayState.FULL_SCREEN;

Using normal (windowed) movie preview all works flawlessly.

We tried using direct/gpu/none modes on hardware acceleration and no changes

Anyone has/had the same issue?

This topic has been closed for replies.

1 reply

Inspiring
January 21, 2013

stage.addEventListener(Event. ADDED,

displayObjectAdded, true); 

function displayObjectAdded(evt:Event):void {

if (evt.target is FLVPlayback) {

evt.target.fullScreenTakeOver = false;

}

}

should do the trick.