B4J Question [ABMaterial] tag {AL} opening at the current page

peacemaker

Expert
Licensed User
Longtime User
HI, All

Is it possible not to open a new browser page for the link?
 
Solution
It is not possible with these tags as they are hard coded to go to the target "_black". Depending on the complexity of your text, you may be able to use the ABMLabel property TextAsRAWHTML where you could set something like:

B4X:
lbl.TextAsRAWHTML = $"some text <a href="http://alwaysbusycorner.com/">The link</a> other text."$

alwaysbusy

Expert
Licensed User
Longtime User
It is not possible with these tags as they are hard coded to go to the target "_black". Depending on the complexity of your text, you may be able to use the ABMLabel property TextAsRAWHTML where you could set something like:

B4X:
lbl.TextAsRAWHTML = $"some text <a href="http://alwaysbusycorner.com/">The link</a> other text."$
 
Upvote 0
Solution
Top