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
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