Playing video on iOS fullscreen
Hi,
I'm working on an iOS project involving video playback. Is there a way to run a video in iOS' default media player and fullscreen? I also need the media player removed from the stage upon tapping on 'DONE' button (default iOS media player's in-fullscreen option). Presently I can able to trigger the default media player by the use of StageWebView but its not directly opens to fullscreen, nor I can get a callback when the 'DONE' button press in fullscreen (to remove player).
Following is StageWebView usage in a fashioned manner:
webView = new StageWebView();
path = new File( new File("app:/"+value.itemPath).nativePath ).url;
webView.stage = this.stage;
webView.viewPort = new Rectangle( 0, 0, stage.stageWidth, stage.stageHeight );
webView.loadURL( path );
Any help would be very appreciated.
Thank you.
