Flash Gallery Problems

Hi Guys,

Someone posted this Flash Gallery and I decided to play in it.
I added 2 simple buttons and broke it.

I had this working before, but the odd thing was when I went
from frame 5 to 1. The content (the thumbnails) showed up on
frame 1. How is this possible? Is it in the code and I’m missing it.
Still a newbie, trying to figure out what went wrong.

What I’m trying to do is have nothing on frame 1, have the gallery on frame 5 and then when you go back to frame 1 nothing from frame 5 showing up on frame 1.

Thanks,
Shawn

The thumbs are dynamically created so you have to remove them:)
And you had a gotoAndPlay in your buttoncode.
for your blue button

on (press) {
	for (i=0; i<nr; i++) {
		this["pic"+i].removeMovieClip();
	}
	gotoAndStop(1);
}

and the red one

on (press) {
	gotoAndStop(5);
}

scotty(-:

Scotty,

Thanks very much for the reply. I’m slowly learning,
and would be making zero progress without this forum
and it’s generous contributors.

Thank You!

welcome=)