Hy,
i have a problem. Im trying to make a gallery.
i have one mc copyed around the single scene and it needs to be in different frames.
basicly i want to use do while to say where its suposed to be. but eaven though trace returns correct mc names and mc frame numbers. nothing happens … why?
Code:
var maniac_x2:Number = 0;
do {
maniac_x2++;
maniac_x4 = “l” + maniac_x2
maniac_x3 = [maniac_x4].toString();
maniac_x3.gotoAndStop(maniac_x2);
};
trace ("mc name is : " + maniac_x3 + " mc frame is : " + maniac_x2);
}
while (maniac_x2 < 57);
stop();