import xtd.tweening.*; import mx.transitions.easing.*; import flash.filters.DropShadowFilter; var StripShrink = new Tween(FoB, "_yscale", Bounce.easeOut, 95, 0, 10, false); var textColoring = new ColorTween(TextLine, Strong.easeOut, "current", "663300", 8, false); var BackShadow = new FilterTween(BoB, new DropShadowFilter(1, 90, 0x000000, .5, 5, 5, 1, 3),"distance",Strong.easeOut,"current",10,20,false); this.onRollOver = function() { StripShrink.start(); BackShadow.start(); textColoring.start(); }; this.onRollOut = function() { StripShrink.reverse(Regular.easeIn); BackShadow.reverse(Regular.easeOut); textColoring.reverse(Regular.easeOut); };