iOS Question playing video files with system player

cengolo

Member
Licensed User
Longtime User
i have a webview that loads assets from the local Files folder.
the folder also contains MP4 and MOV files.
i want them to be played externally, by the system player, not inside the webview.
is that possible?

tried the code below, does not work:



Sub WebView1_OverrideUrl (Url As String) As Boolean
If Not(Url.Contains("html")) Then
App.OpenURL(Url)

Return True
End If
End Sub
 

cengolo

Member
Licensed User
Longtime User
as far as i see videoview plays the files "inside" the app. what i want is that my app stays intact, a player window opens, plays the video and when the user clicks finish on top left as usual, returns to the app. i dont want to add videoview panel to my app window.
 
Upvote 0

cengolo

Member
Licensed User
Longtime User
is it possible to open videoview automatically fullscreen with the "done" button on the top left?
 
Upvote 0
Top