Skip to main content
Participant
June 11, 2013
Question

In AIR (3.8.0.66), when launch in full-screen and create an Video, StageWebView disappears.

  • June 11, 2013
  • 1 reply
  • 2386 views

In version 3.8.0.66 Android AIR, when launch the app in full-screen and create an instance of Video, StageWebView disappears.

Is this a bug in the AIR 3.8.0.66 ?

- source

import flash.media.StageWebView;

import flash.media.Video;

private function init():void {

    //Create StageWebView

    var webView:StageWebView = new StageWebView();

    webView.stage = stage;

    webView.viewPort = new Rectangle(0, 0, stage.width, stage.height);

    webView.loadURL("http://www.google.com/");

    //Create Video

    //StageWebView disappears when there is this line.

    var video:Video = new Video(100, 100);

    return;

}

- app.xml

<fullScreen>true</fullScreen>

This topic has been closed for replies.

1 reply

Adobe Employee
June 11, 2013

We have been able to reproduce the issue and now investigating it.

Thanks for reporting,

Nimit

June 19, 2013

Try add <containsVideo>true</containsVideo> inside <android> tag in application.xml.  Without that new Video() causes problems on android. containsVideo tag is not documented, please update docs.