You're a genius .It works.
But now the problem is the ticket processing on my website won't work within the webview and I don't this that Google would appreciate me not using their 'in-App purchases"
So I'm going to try this...
#Region Module Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
'Activity module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
Dim WebView1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("3")
WebView1.LoadUrl ("
https://michaeljohnson.com.au/mobile.php")
End Sub
Sub Webview1_OverrideUrl (Url As String) As Boolean
If Url.StartsWith("intent") Then
StartActivity(tickets)
End If
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
StartActivity(Base)
End Sub
and then the tickets activity will restart the link in the external browser
#Region Module Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
'Activity module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
Dim p As PhoneIntents
StartActivity(p.OpenBrowser("
https://michaeljohnson.com.au/mobile.php"))
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
BTW the bandsintown people are trying to modify their code to accomodate the deep linking problem. So that why they keep dropping out. Nice of them. Thanks guys