你能帮我把这个函数转换成 ActionScript 3.0 吗?
for (i=1; i<3; i++) {
_root["pemain"+i].onEnterFrame = function() {
ulartangga();
if (this.temp_nomor<this.nomor) {
this.temp_nomor++;
}
this._x = _root["kotak"+this.temp_nomor]._x;
this._y = _root["kotak"+this.temp_nomor]._y;
};
}
我遵循了来自http://warungflash.com/2009/05/ular-tangga-player-vs-player/的教程
我试图转换成这个:
function onEnterFrame() {
//ulartangga();
if (this.temp_nomor<this.nomor) {
this.temp_nomor++;
}
this.x = stage["kotak"+this.temp_nomor].x;
this.y = stage["kotak"+this.temp_nomor].y;
}