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

Where do you enter a URL?

Status
Not open for further replies.

JG555

Instructor
Oct 31, 2001
3
0
0
US
Hi,

I'm just starting my first Flash movie, but I can't find where to enter a URL for a button.

Thanks,
Jen
 
Right-click the button on stage, select actions from the menu.
From the actions list on the left, double-click the on action followed by the getURLaction.

You should end up with something like this:
Code:
on (press) {
    getURL ("[URL unfurl="true"]http://www.yourlink.com/",[/URL] "_blank");
}

Use _blank as the window parameter, if you want to open a new window, or _self, if you want to open the link in the same window as your movie.

Regards,
mywink2.gif
ldnewbie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top