Using a button to go back in the timeline
Hello I am having trouble with a button I want to use. I have 2 sets of looping frames and a button for each set to navigate between the 2 sets. I got the first button to work using the basic action script.
FastSymb.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_16);
function fl_ClickToGoToAndPlayFromFrame_16(event:MouseEvent):void
{
gotoAndPlay(435);
}
It works fine and it navigates me forward into the 2nd looping frame set. I did the same thing for the 2nd button to navigate me backwards in the timeline back to the first set of looping frames but it doesn't work. I used the actionscript.
SlowSymb.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_17);
function fl_ClickToGoToAndPlayFromFrame_17(event:MouseEvent):void
{
gotoAndPlay(397);
}
I'm guessing you cant go backwards in the timeline without a special script or something? Please give me a hand!
