Hey. This is probably a simple question but it’s not clicking in my brain! I’m not too too familiar with actionscript 3.0.
I have an intro in flash to go to an html/css site. What I have right now is when the image is clicked on it jumps to a scene and plays the animation and that’s it. What I don’t know is the scripting afterward. I need to know what the script is to allow it automatically forward the visitor to the html site after the animation plays. The intro page is on its own page.
Right now my code is on frame 1 and this is it:
stop();
import flash.events.MouseEvent;
rotten_btn.addEventListener(MouseEvent.CLICK, jump);
function jump(event:MouseEvent):void{
gotoAndPlay("scene1")
}
Can someone help me with the last scripting that’ll forward the visitor to the html site?