ciao a tutti...
mi trovo con un problemino da risolvere e, mio malgrado, devo ricorrere al vostro aiuto.
ad un clip ho assegnato il seguente script:
onClipEvent (load) {
intervallo = 108.8;
velocita = 4;
base_x = this._x;
foto = 0;
function scorre() {
this.onEnterFrame = function() {
arrivo_x = base_x-intervallo*foto;
this._x = (arrivo_x-this._x)/velocita+this._x;
};
}
}

Rispondi quotando