How to make a flash button that will send you to a link?
Started by: Praetorain | Replies: 3 | Views: 681
Aug 23, 2014 10:48 PM #1236112
How do I make a flash button that will send you to a link?
Aug 23, 2014 11:12 PM #1236115
AS2:
on(release){
getURL("linkhere", "_blank");
}
(With the quotes mind you)
on(release){
getURL("linkhere", "_blank");
}
(With the quotes mind you)
Aug 25, 2014 1:25 PM #1236633
What do I do with "_blank"?
Aug 26, 2014 3:17 PM #1236966
Leave it as _blank. It's telling flash to open the link in a new window.