Thread: Html -> GS2
View Single Post
  #2  
Old 12-24-2011, 05:02 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Yes. Set htmllinks = false then use the onURL event, e.g.

PHP Code:
new GuiMLTextCtrl("Test") {
  
htmllinks false;
  
text "This is a <a href=\"foo\">link</a>!";

PHP Code:
function Test.onURL(temp.url) {
  echo(
"You clicked: " temp.url);

__________________
Reply With Quote