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: [...]
Tag Archives: geturl as3
Flash Actionscript getURL
January 25, 2010
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 [...]


February 20, 2010
6 Comments