Jesse,
Here is the getInstance that I am using
private function MyManager() {
// constructor
if(_myManager==null){
_myManager=this;
}
init();
}
public static function getInstance() : MyManager{
if(_myManager==null){
_myManager=new MyManager();
}
return _myManager;
}
I switched the name of the class a bit but everything else is unchanged in
these two methods.
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