https://www.dropbox.com/s/vuwlsnzb4f..._slideshow.fla Here is a link to the file. You should be able to go directly to the link for the complete download. So sorry you were waiting around for me, had to eat and put my little munchkin down. I am not a "Bro" but maybe I am a "Bra" lol..............

(don't laugh, this is the beginning stages lol), please see that this is created as a Flash CS4 Slide Presentation. If you are using Flash CS4 (not sure if this is still a feature on 5 or 6) go to file>New> and you will see Flash Slide Presentation as one of the options, this is the style of layout that I am using.

I believe the coding that I am after is going to be a bit more complex and require scripting that would look similar to the syntax of the next and previous buttons like this:

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

}