Mmh, se devi mettere un'immagine diversa per ogni mc, no, devi fare in maniera diversa, usando un array ad esempio.
Codice PHP:
var imgs:Array = [new Bitmap(new img1(0,0)), new Bitmap(new img2(0,0)), new Bitmap(new img3(0,0)), new Bitmap(new img4(0,0))];
nel ciclo assegni l'immagine ai clip usando l'indice stesso del ciclo
Codice PHP:
for (var i = 0; i < numOfItems; i++) {
t = new mc();
t.name = "mc"+i;
// place each item equally around the circle
t.angle = i * ((Math.PI*2) / numOfItems);
t.addEventListener(Event.ENTER_FRAME, mover);
// add to stage
addChild(t);
t.addChild(imgs[i]);
}