I've made 3 layers.
1 layer as follows: I've created fastForward & fastPrevious buttons using
**
> function whatever()
{
frame=currentFrame+90;
this.gotoAndPlay(frame);
}
**
I wrote down this code in the beginning of this layer 1.
Layer 2 as follows:
stop();
I wrote down this code somewhere in middle frame.
Layer 3 as follows: Only butttons for layer 3.
This code makes animation jump/next frame by 90 frames, but it also skips the code written(in layer 2) in between these jumps/next. If I write some code on frame 120 or elsewhere then it skips that code and jump to next designated frame while clicking btnfastForward. Simply want to make some bug free fastForward & previous button.