Tag Archives: action script geturl

Flash Actionscript getURL

January 25, 2010

3 Comments

In Actionscript  and Actionscript 2  it is really easy. Example: getURL(“http://domain.com/webpage.html”,”_blank”); But the easiest way is to do it in Actionscript 3.0  is textfield.htmlText htmlText code var link:TextField = new TextField(); link.htmlText = “<a href=’http://domain.com’>SomeDomain</a>”; addChild(link); setStyle What about making the text blue AND underlined like a normal HTML link, how would one go about [...]

Continue reading...