Symbol wont stop when I press my Pause Button
At the moment I have an animation, the animation is a bike with moving spokes that moves around, but when I press my pasue button the Bike stops but the spokes keep moving. The spokes and inside the bike as a Movie Clip. I am using Actionscript 3.
My code for the pasue button is:
play();
pauseButton_btn.addEventListener(MouseEvent.CLICK,stopNow);
function stopNow(e:MouseEvent){
stop();
}
