that is exacly how I am doing this
and i dont see any reason why you shouldnt be doing same ;)
comeClass {
private static var instances:Array = null;
public function comeClass(){
if(instances == null){
instances = new Array();
}
instances.push(this)
}
}2006/4/6, Manuel Saint-Victor <[EMAIL PROTECTED]>: > > Is there any reason not to create a static array in a class that is inited > when the first instance is created and then keeps an array of all of the > class members? I am currently using a helper class to manage that but was > looking for a convenient way to serialize the stack of members after some > had been removed . I figured that I could have a static > saveAllInstances() > method that would run through the array and tell each one to save itself. > Any best practice on this? > > Mani > _______________________________________________ > [email protected] > To change your subscription options or search the archive: > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > Brought to you by Fig Leaf Software > Premier Authorized Adobe Consulting and Training > http://www.figleaf.com > http://training.figleaf.com > _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

