De momento me he arreglado con ésto:
Código :
import mx.transitions.Tween;
import mx.transitions.easing.*;
//
var volTween:Tween = new Tween(miClip, "_x", Strong.easeInOut, 100, 0, 2, true);
//
volTween.onMotionChanged = function() {
miVolumen = Math.round(this.position);
mi_sonido.setVolume(miVolumen);
};
Pero habrá alguna forma más prolija...
Gracias.
