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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating a link

Status
Not open for further replies.

webdev17

Programmer
Feb 6, 2006
33
US
How do I make my entire flash movie a link? I want to open up a url when the user clicks on my flash presentation. Thanks!
 
several ways, but the easiest is to simply create a button state only in the HIT field (which will make it invisible) at the exact size of the stage. Embed the button in a movie clip or have it run the entire length of the timeline. then you can add the script

on (press, release) {
getURL ("something.htm", _blank);
}

If you have other buttons for navigation, make sure that this button is at the lowest level so it doesn't interfere with the rest of the navs....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top