Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

FLVPlayback and fullscreen

New Here ,
Jan 21, 2013 Jan 21, 2013

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?

TOPICS
ActionScript
609
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guru ,
Jan 21, 2013 Jan 21, 2013
LATEST

stage.addEventListener(Event. ADDED,

displayObjectAdded, true); 

function displayObjectAdded(evt:Event):void {

if (evt.target is FLVPlayback) {

evt.target.fullScreenTakeOver = false;

}

}

should do the trick.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines