importation mx.transitions. Tween ;
importation mx.transitions.easing. Fort ;
la variété xTween : Tween ;
la variété yTween : Tween ;
followSecs de variété : Nombre = 1 ;
disciple de variété : MovieClip = _root.attachMovie (« disciple », « disciple », _root.getNextHighestDepth ());
follower.onEnterFrame = mouseFollow ;
mouseFollow de fonction () : Vide {
this.xtarget = _xmouse ;
this.ytarget = _ymouse ;
xTween = nouveau Tween (ceci, « _x », Strong.easeOut, ceci. _x, this.xtarget, followSecs, vrais) ;
yTween = nouveau Tween (ceci, « _y », Strong.easeOut, ceci. _y, this.ytarget, followSecs, vrais) ;
}
|