Tag Archives: actionscript geturl

How to add links in Flash with getURL

February 20, 2010

6 Comments

To add some interactivity to the flash animated part of your web design template you should add some links to the flash objects. For example you’ll need to link flash buttons with pages of your website or redirect your flash intro to homepage after it finished. There are some kinds of links in Macromedia Flash: [...]

Continue reading...

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...