salve!!
io ho il codice:
Codice PHP:
import mx.transitions.Tween;
import mx.transitions.easing.Regular;
import mx.transitions.easing.Bounce;
arancio_MC.arancio_TW.onRelease = function() {
    var 
scritta_TW:Tween = new Tween(_root.Home_MC.Home_TW.scritta_MC"_y"Regular.easeOut18815810false);
    var 
scri_TW:Tween = new Tween(_root.Home_MC.Home_TW.scri_MC"_y"Regular.easeOut26429410false);
    var 
scri_TW:Tween = new Tween(_root.Home_MC.Home_TW.scri_MC"_alpha"Regular.easeOut1004010false);
    var 
tweenListener:Object = new Object();
    
tweenListener.onMotionFinished = function() {
        var 
scritta_TW:Tween = new Tween(_root.Home_MC.Home_TW.scritta_MC"_y"Bounce.easeOut15818820false);
        var 
scri_TW:Tween = new Tween(_root.Home_MC.Home_TW.scri_MC"_y"Bounce.easeOut29426420false);
        var 
scri_TW:Tween = new Tween(_root.Home_MC.Home_TW.scri_MC"_alpha"Bounce.easeOut4010020false);
    };
    
scritta_TW.addListener(tweenListener);
}; 
che serve x far saltare l'oggetto premendo il movieclip arancio_TW... Fin qui tutto ok...

Il mio problema è che se l'utente clicca una seconda volta sul pulsante l'animazione del salto riparte dall'inizio... come posso evitare??
si può disattivare il pulsante fino ch l'animazione nn è finita?