Place an instence of the movie clip with the video file on the main stage and call it "vid"
Put this code on it
Code:
onClipEvent (enterFrame) {
if (_root.ffwd == true) {
frame = this._currentframe+5;
this.gotoAndStop(frame);
}
if (_root.frwd == true) {
frame = this._currentframe-5;
this.gotoAndStop(frame);
}
}
On your rewind button put this code
Code:
on (press) {
_root.frwd = true;
}
on (release) {
_root.frwd = false;
}
On your fast foward button put this code
Code:
on (press) {
_root.ffwd = true;
}
on (release) {
_root.ffwd = false;
}
For your go to star button put this code
Code:
on (release) {
_root.vid.gotoAndStop(start);//frame lable named start
}
For your go to end button put this code
Code:
on (release) {
_root.vid.gotoAndStop(end);//frame lable named end
}
Very easy... lots of fun! Enjoy