-
1. Re: Projecting iPad Video
Colin Holgate Aug 4, 2013 8:55 AM (in response to mrwizzer2)You could try using StageWebView as the way to show H.264 video. That then would hopefully hook in with the system’s ability to play video through the dock connector.
-
2. Re: Projecting iPad Video
mrwizzer2 Aug 4, 2013 10:41 AM (in response to Colin Holgate)Thanks Colin, you're always such a reliable resource.
Could you elaborate on StageWebView a bit?
-
3. Re: Projecting iPad Video
Colin Holgate Aug 4, 2013 2:04 PM (in response to mrwizzer2)Here’s timeline code that would play back an MP4 named “test.mp4":
import flash.geom.Rectangle;
import flash.media.StageWebView;
import flash.filesystem.File;
var webView:StageWebView = new StageWebView();
webView.stage = this.stage;
webView.viewPort = new Rectangle(0,0,stage.stageWidth,stage.stageHeight);
var fPath:String = new File(new File("app:test.mp4").nativePath).url;
webView.loadURL( fPath );
-
4. Re: Projecting iPad Video
mrwizzer2 Aug 5, 2013 9:04 AM (in response to Colin Holgate)Thanks for you, as always, detailed and informative response, Colin.
I can't wait to give it a try, (though it appears I'll have to wait until Apple restores it's developer access fully enough to let me get past the new agreement message. So frustrating!)
Thanks again!
Mike



