hyperlinks in standalone do not work
Posted: Fri Aug 15, 2014 5:43 pm
Hello,
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:
When I test it in IDE and in Windows standalone it works OK. But in Android standalone it does not work at all.
What do I have to correct to get it working on Android?
Thanks.
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.