I have: (1)
this["btn_a"].onRelease = function (){
this._parent[up_mc]._visible = true;
this._parent[add_mc].num = random(10)+190;
trace(this._parent);
}
and I change it to (2)
function click1(){
this._parent[up_mc]._visible = true;
this._parent[add_mc].num = random(10)+190;
trace(this._parent);
}
this["btn_a"].onRelease = function (){
click1();
}
When I press the button in (1), it shows "_velvel9", but when I press the button in (2), it shows "undefined". I don't know anything about AS2, so please help me and explain in detail. Thank you very much.
source
share