What event is fired when URL link is clicked

Penfound

Active Member
Licensed User
Longtime User
I use HTML to write information on sliding panels and in several and various places I will include a URL which generates a connection to the web but does not generate the intent and setup my YouTube page.

I already have the code in another part of the app that works differently and I capture a button click event to select the correct intent or webview.

Presumably there must some event that is geneerated when a URL is clicked, but what might it be?:) Please.

Cheers
Penfound
 

Penfound

Active Member
Licensed User
Longtime User
I can't the override URL bit. The code that calls the page within which is the URL is

Select Title
Case "Study 1"
wv.LoadHtml(FetchASLessonString(0))
Case "Study 2"
wv.LoadHtml(FetchASLessonString(1))
Case "Study 3"
wv.LoadHtml(FetchASLessonString(2))
Case "Study 4"
 
Upvote 0
Top