1065
Adobe’s Take:
You are using an undefined lexical reference. For example, in the following statements, the statement trace(x) generates an error because x is undefined. However, the statement trace(y) doesn't generate an error because y is defined:
trace("hello world")
trace(x) // x is undefined
var y
trace(y) // No error, y is defined.
Login/Register to make a post
· · ·

