MovieClip _alpha

Alright… so far no luck, but there is one thing I can tell you right off the bat.

If all your images are going to be the same, you don’t need 3 of the same images… just make your code look like this…

for (i=1; i<=parseInt(_level0.count); i++) {
	mc = createEmptyMovieClip("puppyholder"+i, i);
	mc._x = i*100;
	mc._y = 180;
	loadMovie("puppy1.jpg", mc);
}

But I am assuming you are going to actually have 3 different pics in the end…so I will leave it the way you gave it to me.