View Single Post
  #8  
Old 11-28-2005, 11:16 PM
Riot Riot is offline
Delteria Management
Join Date: Nov 2003
Location: Seminole County, Florida
Posts: 280
Riot is on a distinguished road
First off, I do not see a URL in what you posted. URLs are defined using the standard HTML <a href> tag or the Torque script <a:url>, also do not include the http://.

Try using a catch event instead.
HTML Code:
thiso.catchevent(name, "onURL", "urlClicked");
Then add to somewhere in the code:
HTML Code:
function urlClicked(obj, url) openURL(url);
Reply With Quote