Search tutorials
Insert a layer name it A .
Insert a layer name it buttons.
Insert blank key frames in the pictures label.
Import your pictures into the library.
Pull each pictures out onto the stage on
it's own key frame.
Click on the first frame of the A layer
& add this action:
stop();
Click on the buttons layer.
Drag out the right & left playback buttons in the common libraries, button library.
Click on the right button & add this action:
on (release) {
if (this._currentframe == this._totalframes) {
gotoAndStop(1);
} else {
nextFrame();
}
}
Click on the left button & add this action:
on (release) {
if (this._currentframe == 1) {
gotoAndStop(this._totalframes);
} else {
prevFrame();
}
}
Test your movie & your done.Dont forget to save your work.
Blonde
» Level Basic |
Added: 2005-02-07 Rating: 5 Votes: 36 |
» Author |
Love Flash animation & web design. |
» Download |
Download the files used in this tutorial. |
Download (45 kb) |
» Forums |
More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.
Comments
There are no comments yet. Be the first to comment!