How to make a flash button that will send you to a link?

Started by: Praetorain | Replies: 3 | Views: 681

Praetorain
2

Posts: 1,588
Joined: Nov 2012
Rep: 10

View Profile
Aug 23, 2014 10:48 PM #1236112
How do I make a flash button that will send you to a link?
GMR
2

Posts: 3,411
Joined: Aug 2012
Rep: 10

View Profile
Aug 23, 2014 11:12 PM #1236115
AS2:

on(release){
getURL("linkhere", "_blank");
}


(With the quotes mind you)
Praetorain
2

Posts: 1,588
Joined: Nov 2012
Rep: 10

View Profile
Aug 25, 2014 1:25 PM #1236633
What do I do with "_blank"?
Zed
2

Posts: 11,572
Joined: Feb 2009
Rep: 10

View Profile
Aug 26, 2014 3:17 PM #1236966
Leave it as _blank. It's telling flash to open the link in a new window.