Flash MX2004 Slideshow Tutorial
by Cressida Goddard
Making a Slide Show
- Open a new flash document
- Create a layer called images and import about 5 images onto the timeline
- Now make an actions layer and keep it on top.
- Select the 1st frame in the actions layer and go to Window >> Development Panels >> Actions to open the actions panel.
Flash Tutorials in Video Format -
Watch them now at LearnFlash.com
- In the actions tool box choose Global Functions - Timeline control and
double click on stop to add a stop action.
This will cause the movie to stop when it first appears on the screen allowing users
to control their viewing of your pictures.
|
|
| There should be a little 'a' on the timeline. |
The actions panel should look like this. |
- Now create 2 new layers called butforward and butprevious.
- From the library drag a forward button and a back button onto the stage.
Window - Other Panels - Common libraries - Buttons.
Make sure they are on their correct layers.
- Now click on each button and name each object in the instance text
box in the Properties panel next_btn and prev_btn.
- Select the 1st frame again in the actions layer and go to Window >> Development Panels >> Actions to open the actions panel.
- Type the following code exactly after the stop action you wrote previously:
// next button
next_btn.onRelease = function() {
gotoAndStop(_currentframe+1);
};
// previous button
prev_btn.onRelease = function() {
gotoAndStop(_currentframe-1);
};
- Then you can play your slideshow.
Are you interested in obtaining
a job in programming? There are many online colleges in Information
Technology, so you can live your aspirations.
Locate a college education as well as grants for education to help you on your way.
|