You may have a common situation where you start loading some assets in the constructor, let's suppose a background image.
This code would not work properly:
var object:TestObject = new TestObject(); //inside the contructor, the background image will start loading
object.background.width = 120; // this will not work, because the background is not loaded yet
There are a lot of ways to solve this...
You could load the assets before creating the object, and after they are loaded completely send them to the constructor as parameters.
Or you could define some properties inside the object which will be assigned to the loaded assets when they complete loading, something like this:
//outside
object.BackgroundWidth = 120;
----------
//inside the class
public var BackgroundWidth:int;
private var background:Bitmap;
public function TestObject(){
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, assignProperties);
loader.load("img.png");
}
//this will make sure the width is applied to the background
//when it's loaded completely
private function assignProperties(e:Event){
background = Bitmap((event.currentTarget as LoaderInfo).content);
background.width = BackgroundWidth;
}
I hope this helped.
if (object != null)fails? It's hard to see how else you'd be able to tell if it has a non-null reference. Or do you mean initialised - like all properties have been set? – Gary Rowe Nov 25 '10 at 17:43