Hey! have a little issue that i am trying to work out here. basicly what im trying is to have a variable set to 0 and increment to load pictures in a folder. so my setup is that i have 3 mc’s on the root “mc1,mc2,mc3” witch i want to load my pictures into. and on the first frame i have the code:
var i:Number = 0;
while (i<5) {
_root.mc+.loadMovie(+".jpeg");
i++;
trace(i);
}
now it has been a while since i have layed my hands on flash so im a bit rusty. but what i want it to do is as follows: to use the var “i” to get the instance name for the Mc to load the picture in. and at the same time use the var “i” to get the picture number. some tips would be appreciated
-dahle