ok i adjusted the code so that I could identify each movieclips number. Every time the movieclip is added to stage it is triggered by an event listener... how would I call it? using an Event.ADDED_TO_STAGE, how would i call it? i try e.target but it doesnt work. So when I try e.target.x, i cant change it....

private function addedToStageF(e:Event):void
{
removeEventListener(Event.ADDED_TO_STAGE, addedToStageF);
trace(e.target.name);
e.target.width = 12211;
trace(e.target.width);//I get 0.....as for all of them...

{