Joshua Honig
Joshua Honig

Reputation: 13215

What is "this" bound to in a frame script?

On a frame script in ActionScript 3, what is the special variable this bound to?

Upvotes: 0

Views: 62

Answers (1)

user1080806
user1080806

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

Related Questions