Scripted loops, questions from newbie

Yeah, you create another for loop, but since you already used i you can’t use that again, so we will move to the next letter in the alphabet… “j”

for (j=0; j<maxClips; j++) {
	_root["mc"+j].removeMovieClip();
}

This creates another loop that goes to the maxClips, and removes them all.