1069
Adobe’s Take:
You are referencing an undefined property on a non-dynamic class instance. For example, the following generates this error when it references property x, which is not defined and cannot be created dynamically:
class A {} // sealed class, not dynamic
trace(new A().x) // no property x defined on A, and A is not dynamic
Login/Register to make a post
· · ·

