non ho avuto il tempo di decodificare il codice ma ho notato che in alcuni punti usi le proprietà senza il riferimento, potrebbe dipendere da quello
onClipEvent (load) {
org_x = this._x;
newX = _x ; //qui ecc..
}
onClipEvent (enterFrame) {
Xspeed = ((_x-newX)/_root.velocita+frenata)/2;
_x -= Xspeed;
if (velocita<2) {
velocita = 2;
}
}
Poi su ogni tasto ho messo:
on (rollOver) {
_root.slider.newX = (this._y)+207.4;
}
on (rollOut) {
_root.slider.gotoAndStop(1);
}
on (release) {
_root.slider.gotoAndPlay(3);
}
E ho creato un'action con:
Stage.showmenu=false;
velocita = 2;
frenata = 2;
_root.stop();