Flash can be used to make movies, games, and slide shows. Flash slide shows are particularly useful because you can easily embed multimedia elements. Because Flash is designed to do multimedia (unlike most strictly slide show programs), it easily includes animations, graphics, and sound without crashing or having errors.
To make a slide show in Flash, you'd simply make the individual slides on separate key frames, putting a "stop" action on each of the keyframes. Then, you'd create two buttons - one to go forward and one to go back, using the code below, on each frame/slide.
The code below will make the frame/slide go to the next frame/slide.
on (press) {
myMovieClip.nextFrame();
}
To make the slide go back by one frame, you'd just change the next to previous, like this:
on (press) {
myMovieClip.prevFrame();
}