Search tutorials
Part 3: Adding navigation control to the content.
Now, you have one slide per frame, but you don't want the movie to play straight through. We'll some buttons and some simple Actionscript to control the navigation.- Create a layer called "ActionScript." Add a stop action to each frame of the timeline:
stop ();
Add this script to the next slide button:
on (release) {
nextFrame ();
}
Add this script to the previous slide button:on (release) {
prevFrame ();
}
Add this script to the home button:
on (release) {
gotoAndPlay ("1");
}
Other fix-ups:
Once you have your most of your PowerPoint content into Flash, you might have to do a bit of cleaning up. You might want to reimport bitmap graphics (or, better yet recreate as vector drawings, so they can be scaled without losing quality.) You can also make your presentation more Flashlike, by adding animation or more interactivity with ActionScript or movie clips.| » Level Intermediate |
|
Added: 2002-08-20 Rating: 9 Votes: 47 |
| » Author |
| Elizabeth Whalen is a technical writer, interested in Flash and the Web. |
| » Download |
| Download the files used in this tutorial. |
| Download (89 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!