Inizia con questo script da applicare su un Clip che rappresenta un Menu.
onClipEvent (load) {
// colore = new Color(this);
INC = 10;
MAX = 80;
Inizio = 120;
Fine = Inizio-MAX;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, false)) {
// colore.setRGB(0xFFCC33);
sopra = true;
if (this._x == inizio) {sposta = true} else {sposta = false}
} else {
// colore.setRGB(0xFFFFFF);
sopra = false;
}
}
onClipEvent (enterFrame) {
if (sposta) {
if (this._x>Fine) {
this._x = this._x-INC;
}
} else {
if (this._x<Inizio) {
this._x = this._x+INC;
}
}
}

Mandami la tua E-Mail ti mando un esempio domani.
Ciao