1010
Adobe’s Take:
This error can occur if you try to access a property of an object that does not exist. For example:
var obj:Object = new Object();
obj.a = "foo";
trace(obj.b.prop);
You can also see this error because of a misspelling, for example in the following, where mc represents a MovieClip object in the display list, and the stage property is misspelled with a capital S (it should be stage):trace(mc.Stage.quality);
Login/Register to make a post
· · ·

