I am using: Adobe Flash CS3 Action Script 3.0. I have to use this…Sorry
Here is my problem. I have a preloader, works fine. I have a contents page. I have an animation between my preloader and contents page. So, when I run my program, the preloader is suppose to load my animations page. Then, at the end of the animation page, it goes automatically to my contents page.
I want a “Skip Intro” button on my animation page that goes right to the content page. This is what I did:
On my animation page I have a movie playing with a skip intro button. I put this code in the Action Script 3.0 Panel:
stop();
Skip_btn.addEventListener(MouseEvent.CLICK, Skip);
function Skip(e:MouseEvent):void{
gotoAndStop(3);
}
This works perfectly. It goes right to frame 3 were my content frame is. However, it is still playing the video. I need the video to stop playing once i click the “skip intro” button and i’m on my content page. Thanks for your mighty help! Don’t forget, im in Action Script 3.0! Thanks