html 5 video not working
I have a very simple air project. It places a stagewebview an loads a page (the code it below if needed). The page has a button which tests if html 5 video is supported by your browser. If I run the code in the debugger I can see that I have video support. If I publish to iPad I have video support. The problem is when I publish to desktop, mac or pc, it does not have support. Not sure why it works in debugger but no in a published app. How do I get html 5 video to work on an air for desktop application?
import flash.media.StageWebView;
import flash.geom.Rectangle;
var webView:StageWebView = new StageWebView();
webView.viewPort = new Rectangle(0,0,stage.stageWidth, stage.stageHeight);
webView.stage = this.stage;
webView.loadURL("http://www.w3schools.com/html/html5_video.asp");
