UPDATE**
I am putting together a music visualisation based on Michael Battle’s particle generator.
Each particle is attached, and then into it one of several animations is loaded into it from the library.
For some unknown reason however, certain (the inconsitency is the wierd thing!) particles are not removed and stay planted on the stage.
Have a look in the example. In particle.as there is the following code:
// Works!
//var p:anim1 = new anim1()
// Does NOT Work!
var p:anim2 = new anim2()
addChild(p);
I have 2 animations in my library. ‘anim1’ when attached to the particle behaves properly, whereas ‘anim2’ gets stuck on the stage!
This makes no sense as they are both movieclips with simple stop frame animations in them, using only the flash drawng tools.
Any suggestions?