1070
Adobe’s Take:
You are using a super statement to call a function, but the function doesn't exist in the super class. For example, the following code generates the error:
class A() {}
class B extends A {
function f() { trace(super.f()); } // error 1070, there is no f on A
}
Login/Register to make a post
· · ·

