Is this normal? does it do it to you when your mouse over the buttons?
code
file size is only 80kb
and not getting much bigger for the most part im not using external imagry
import fl.motion.easing.;
import caurina.transitions.;
import caurina.transitions.properties.FilterShortcuts;
FilterShortcuts.init();
mc_over.addEventListener(MouseEvent.MOUSE_OUT, mouseOut)
mc_over.addEventListener(MouseEvent.MOUSE_OVER, mouseOver)
var timer1:Timer = new Timer(1000, 10000000);
timer1.addEventListener(TimerEvent.TIMER, notifier1);
function notifier1(event:TimerEvent):void
{
Tweener.addTween([mc3, mc4], {x:-130.0, y:-185.2});
Tweener.addTween([mc3, mc4], {x:-153.0, y:-185.2, time:1, ease:Cubic.easeInOut});
}
function mouseOver(event:MouseEvent):void
{
Tweener.addTween([mc3, mc4], {_Blur_blurX: 20, _Blur_blurY: 20});
timer1.start();
Tweener.addTween([mc1], {x:-0.1, y:-32.3});
Tweener.addTween([mc2], {x:-0.1, y:32.3});
Tweener.addTween([mc3, mc4], {_Blur_blurX: 0, _Blur_blurY: 0, time:1});
}
function mouseOut(event:MouseEvent):void
{
timer1.stop();
Tweener.addTween([mc1], {x:-0.1, y:-400});
Tweener.addTween([mc2], {x:-0.1, y:-400});
}
mc_over.buttonMode = true;