I created few hyperlinks in the text field to open the web pages in a default browser. I did it in this way:
1. Formatted the text as Link
2. used this code to set the link:
set the linkText of line 1 of fld "mylinks" to "http://mywebpage.html"
3. included this code in the card where the field with the link is present:
Code: Select all
on linkClicked myLink
if myLink contains "http://" then revGoUrl myLink
end linkClicked
What do I have to correct to get it working on Android?
Thanks.