buongiorno,

ho creato questo codice As per la gestione di un menù.
però ho un problema, funziona solo al primo click.

qualcuno può aiutarmi??
Allego il codice AS:

_root.menu.sub1._x = 280;
dec = 5;
function Sposta() {
this.sub1.onEnterFrame = function() {
_root.menu.sub1._x = _root.menu.sub1._x+(-214-_root.menu.sub1._x)/dec;
_root.menu.sub2._alpha -= 10

};
}
this.squadre.onPress = function() {
Sposta();
};
_root.menu.sub2._x = 280;
dec = 5;
function Sposta_2() {
this.sub2.onEnterFrame = function() {
_root.menu.sub2._x = _root.menu.sub2._x+(-82-_root.menu.sub2._x)/dec;
};
}
this.stagione.onRelease = function() {
Sposta_2();
};