AS 2.0 Classes
AS 2.0 Classes
Out of context: Reply #2
- Started
- Last post
- 11 Responses
- fugged0
try:
myShape.onRelease = function() {
trace(this);
}within the scope of the function, "this" will refer to the object myShape.
try:
myShape.onRelease = function() {
trace(this);
}
within the scope of the function, "this" will refer to the object myShape.