1

你能帮我把这个函数转换成 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;
}
4

1 回答 1

2

enter-frame 应该是一个 EventListener。假设您的其他代码是正确的,这应该可以工作。

import flash.events.Event;

this.addEventListener(Event.ENTER_FRAME, enterFrameHandler);

function enterFrameHandler(e:Event):void{
    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;
}
于 2012-11-12T12:43:45.083 回答