hey my friend you can help me with something? im trying to create a presentation for a touch screen, so i have some stop(); actions in the timeline and also have a button to play or continue the animation, but now i need a reverse button to go back to the previous stop.
hey my friend you can help me with something? im trying to create a presentation for a touch screen, so i have some stop(); actions in the timeline and also have a button to play or continue the animation, but now i need a reverse button to go back to the previous stop.
ReplyDeletethis is my play button:
import flash.events.MouseEvent;
play_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToNextFrame);
function fl_ClickToGoToNextFrame(event:MouseEvent):void
{
MovieClip(this.root).play();
}
i have everything in the main timeline... if you can help me i will apreciate it! thanks!