applesith macrumors 68030 Original poster Jun 11, 2007 2,811 1,625 Manhattan Jan 20, 2008 #1 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!
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!
heehee macrumors 68020 Jul 31, 2006 2,469 235 Same country as Santa Claus Jan 20, 2008 #2 Make a button and use this script... on (release) { getURL("http://blah.com/", "_blank"); }
applesith macrumors 68030 Original poster Jun 11, 2007 2,811 1,625 Manhattan Jan 21, 2008 #3 heehee said: Make a button and use this script... on (release) { getURL("http://blah.com/", "_blank"); } Click to expand... I do this and i get errors about their being extra syntax on the 1st line.
heehee said: Make a button and use this script... on (release) { getURL("http://blah.com/", "_blank"); } Click to expand... I do this and i get errors about their being extra syntax on the 1st line.
JasonElise1983 macrumors 6502a Jun 2, 2003 584 0 Between a rock and a midget Jan 21, 2008 #4 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
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
G giganten macrumors 6502a Jan 23, 2006 602 0 Jan 21, 2008 #5 Maybe this. Name.addEventListener(MouseEvent.CLICK,clickHandler); function clickHandler(event:MouseEvent):void{ navigateToURL(new URLRequest("http://url.here"),"_self"); }
Maybe this. Name.addEventListener(MouseEvent.CLICK,clickHandler); function clickHandler(event:MouseEvent):void{ navigateToURL(new URLRequest("http://url.here"),"_self"); }