インスタンス名が宇宙船のムービークリップがあります。このムービークリップをクリックすると、トランジションの速度を変更したいと思います。これが私のコードです:
import fl.transitions.*;
import fl.transitions.easing.*;
var myspaceship:TransitionManager = new TransitionManager(spaceship);
myspaceship.startTransition({type:Fly, direction:Transition.OUT, duration:18,startPoint:6});
spaceship.addEventListener(MouseEvent.CLICK, speedfast);
function speedfast (evt:MouseEvent):void
{
// reset frame count to 0
//here i want the duration to become say 12 or something
}
つまり、宇宙船がマウスクリックでスピードアップしたいのです...