ello… can anyone point to me…where to put the set interval in this below code if i wanna make the duplicate one bye one…i mean after it finished duplicate one and proceed duplicate 2nd after second…and so on…is it possible…i’ve tried put the set interval code but it’s seem not work at all…the example code are below…
bil = 1;
for (j=0; j < 4; j ++) {
for (i=0; i < 4; i ++) {
duplicateMovieClip(theMask, "theMask"+bil, bil);
setProperty("theMask"+bil, _x, (i * 100));
setProperty("theMask"+bil, _y, (j * 100));
bil ++;
}
}
stop();
really need help…
thx