In actionscript, how can you test if an object is defined, i.e., not null?
|
This works in AS2 and AS3, and is the most reliable way to test if an object has a value.
Its also the most reliable way to test an object's property and read it in the same expression:
There's a difference between null and undefined, but if you don't care you can just do a normal comparison between either one because they compare equal:
is the same as
If you care about the difference, use the === or !== operator, which won't convert them.
|
|||||||||||||
|
|
For AS3, if all you want is a generic test for nothingness, then it's very easy:
In the example above, only c will trace. This is usually what I need, and just checking |
|||||||||
|
|
Just test it against null.
|
|||
|
|
|
You could also loop through a parent object to see if it contains any instances of the object you're looking for.
|
|||
|