If it some kind of slide show, pictures right? It doesn't even have to play more than 1 frame at a time really!
Scenario:
Show 10 pictures - Go from one to the next by pressing a button.
Hit New under File. Rename the layer "actions". Press F6 10 times. Double-click each of those frames and insert a stop(); action in each one of them. Insert a new layer. Rename it "pictures". Select the first frame and press F6 10 times again. Select the first frame, and import your first picture. Position it. Do the same for the nine other pictures, selecting the right frame and importing the picture. Next create your button. Under Insert, hit New Symbol. Name it "myfirstbutton" or whatever, and give it a button's behavior. Now draw a rectangle or whatever and put text over it like "NEXT", seems appropriate... When done with that drawing, press F6 twice. You should now have the same drawing under the "up", "over", "down" states. Leave the hit state empty. Under Edit, hit Edit Movie (or CTRL E) or hit the clapper icon (top right) and select scene 1. Once again insert another layer and name it "button". Press
F5 this time 10 times or until the layers are all equal. Press CTRL L. This will open the Library. You Should see your button in there. Select the first frame of your button layer. From the library, select and drag your button on stage and position it... Lower right or wherever! Now right click on the button and select actions. Add an
on action. You'll see something like this appear:
on(release){
}
Highlite the first line and add a
goto action. You will now see:
on(release){
gotoAndPlay(1);
}
In the
type box select Next Frame, you will now have:
on(release){
nextFrame();
}
You're done! Happy?
Under control hit Test Movie!
Finally, print this post so you can follow up while doing it!
ldnewbie