How to do fast forward in flash

Hi i have a flash and i want to add a stop button a play button and a fast forward button…the last one i cant make…anyone can help?

here’s one way:
for your reference, target is the movieclip that you want to fastforward

//the fast forward button is pressed:
on(press) {
   target.fastforward = true;
}
//we want to stop fastforwarding when the user lets go of the fastforward button
on (release) {
   target.fastforward = false;
}

now, we want to have a movieclip test to see whether the button is down (by checking the fastforward variable in the target, and then acting accordingly.

onClipEvent(enterFrame) {
   target.gotoAndPlay(target._currentframe + 2);
}

hope this helps you

Where do i add the second action?