};
container["ball" i].onRelease=function(){
varmyTween:Tween=newTween(this,"_xscale",Elastic.easeOut,200,100,1,true);
varmyTween:Tween=newTween(this,"_yscale",Elastic.easeOut,200,100,1,true);
};
}
}
start_func();
/*拖动跟随*/
varmouseListener:Object=newObject();
mouseListener.onMouseDown=function(){
if(container["ball" 0].hitTest(_root._xmouse,_root._ymouse)){
drag=true;
}
};
mouseListener.onMouseMove=function(){
if(drag){
num=1;
deletecontainer["ball" 0].onEnterFrame;
container["ball" 0]._x=_root._xmouse;
container["ball" 0]._y=_root._ymouse;
for(vari:Number=1;i<=9;i ){
deletecontainer["ball" i].onEnterFrame;
container["ball" i]._x =(container["ball" (i-1)]._x-container["ball" i]._x)/3;
container["ball" i]._y =(container["ball" (i-1)]._y-container["ball" i]._y)/3;
}
}
};
mouseListener.onMouseUp=function(){
drag=false;
/*拖动后才能恢复*/
if(num==1){
start_func();
num=0;
}
};
Mouse.addListener(mouseListener);
源文件:闪吧2008兴旺发展.rar










