up vote 11 down vote favorite
3
share [g+] share [fb]

In actionscript, how can you test if an object is defined, i.e., not null?

link|improve this question
Does this work exactly the same in AS1, AS2 and AS3? – bzlm Feb 22 '09 at 11:04
feedback

4 Answers

up vote 12 down vote accepted

test if an object is defined

This works in AS2 and AS3, and is the most reliable way to test if an object has a value.

if (obj != null) {
    doSomethingWith(obj);
}

Its also the most reliable way to test an object's property and read it in the same expression:

if (arr[0] != null && arr[0]>5) {
    doSomethingWith(arr[0]);
}

test if an object is null

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:

if (obj == null) {
    doSomethingWith(obj);
}

is the same as

if (obj == undefined) {
    doSomethingWith(obj);
}

If you care about the difference, use the === or !== operator, which won't convert them.

if (obj === undefined) {
    // obj was never assigned a value
}
else if (obj === null) {
    // obj was explicitly set to null
}
else {
    doSomethingWith(obj);
}
link|improve this answer
1  
You mean all those if(obj == null || obj == undefined) statements in my codebase can be condensed? woo! :) – Herms Nov 18 '08 at 21:32
Could you throw "if (obj)" in there? How does boolean coercion work? – bzlm Feb 22 '09 at 11:03
feedback

For AS3, if all you want is a generic test for nothingness, then it's very easy:

var a;
var b;
var c;
var d;
a = undefined;
b = null;
c = 5;
if (a) trace(a);
if (b) trace(b);
if (c) trace(c); // will trace
if (d) trace(d);

In the example above, only c will trace. This is usually what I need, and just checking if (obj) is the most readable version.

link|improve this answer
I thought I would have tried that, but this indeed works, and I think it looks nice too. – Matthew Shanley Feb 26 '09 at 1:49
I like it too, it makes the code more readable and makes refactoring easier. – bzlm Feb 26 '09 at 7:34
Good point. Included in the accepted answer. Thanks. – Jenko Dec 10 '09 at 19:40
feedback

Just test it against null.

var someObj:Object = getSomeObjectOrMaybeNull();
if(someObj == null) {
  trace("someObj is null!");
} else {
  trace("someObj is not null!");
}
link|improve this answer
feedback

You could also loop through a parent object to see if it contains any instances of the object you're looking for.

foundit=false;
for (var i in this) {
    if (this[i]._name == "MyMovie") {
         foundit=true;
    }
}
link|improve this answer
This is very bad practice to loop just to find out if some object is null – yn2 Dec 22 '11 at 9:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.