Reputation: 13215
On a frame script in ActionScript 3, what is the special variable this
bound to?
Upvotes: 0
Views: 62
Reputation:
this
on a framescript is bound to the MovieClip. ActionScript 3 doesn't share the dynamic this
scoping of JavaScript, it will always be bound to the class.
Upvotes: 2