Broken Flash Logo
Click an error type to choose an error.

mikeduguid

ø

Sentientv2

ø

joegodfrey

ø

sinsonido

ø

Aron18

ø

Ryan Stone

ø

John Nelson

ø

Alan

ø

Nojiveturkeyhe...

ø

aleejen

ø

Kellyf

ø

dangurtner

ø

kbowen

ø

agarcia

ø

ryan

ø

· · ·

1010

Runtime Error:A term is undefined and has no properties.

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
· · ·