In AIR (3.8.0.66), when launch in full-screen and create an Video, StageWebView disappears.
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>
