https://addons.mozilla.org/en-US/firefox/addon/10137
Flash Slide Presentation
Select Flash Slide Presentation from "Create New Menu"
1. Name you presentation
2. On slide one import your picture
3. Insert the second slide and import picture
4. repeat step 4 for all pictures
5. Place a button eg. "Next" on each screen.
6. right click your buttons, click on Action and paste the code below in the
action scrip pane.
7. Test your presentation.
on (release) {
// GoTo Next Screen behavior
var screen = null;
var target = this;
while((screen == null) && (target != undefined) && (target != null))
{
if(target instanceof mx.screens.Screen)
{
screen = target;
}
else
{
target = target._parent;
}
}
if(screen instanceof mx.screens.Slide)
{
screen.rootSlide.currentSlide.gotoNextSlide();
}
// End GoTo Next Screen behavior
}