Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Create Button ActionScript 1

Status
Not open for further replies.

PhatH

IS-IT--Management
Mar 30, 2004
88
US
Hello all,

I want to create a text link in a Flash MX banner that, when clicked, will open another html page.

I tried

ButtonName.onrelease
getURL( _blank);

But no luck! :)
 
Watch your syntax...
Code:
my_button.onRelease = function(){
    getURL("http:[URL unfurl="true"]www.google.com/",[/URL] "_blank");
};
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top