PDA

View Full Version : Removing the movieclips, but still sluggish!


quanteezia
06-12-2005, 08:14 PM
I've included a .zip with a .fla of a test file I am working with. I don't understand why the flash starts to run sluggish after a while... I have duplicating movieclips over and over again which would explain it but each of them are being removed after a while... so why does it get so slow?

mmm..pi..3.14..
06-12-2005, 08:32 PM
Just a level problem...change script in first frame to this:


a = 0;
onEnterFrame = function () {
a++;
duplicateMovieClip(_root.deb, "d"+a, a);
tellTarget ("_root.d"+a) {
id = random(2);
}
if (a>=30) {
a = 0;
}
};


Eric :D

quanteezia
06-12-2005, 08:36 PM
Oh okay awesome, thanks a lot!