Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

applesith

macrumors 68030
Original poster
I recently started playing around with Flash CS3 Pro. I created a movie with several images that move in it. Is there a way to make the entire movie link to a webpage? If so, how? I wanted to use it on a website. Thanks!
 
Make a button and use this script...

on (release) {
getURL("http://blah.com/", "_blank");
}
 
that syntax is perfect. i even copied and pasted it onto a button in flash to try it and it worked. Did you copy and paste it or re-type it?

-JE
 
Maybe this.

Name.addEventListener(MouseEvent.CLICK,clickHandler);
function clickHandler(event:MouseEvent):void{
navigateToURL(new URLRequest("http://url.here"),"_self");
}
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.