主题:  解释一下!!!

瀚叔

职务:普通成员
等级:1
金币:1.0
发贴:256
#12002/3/15 22:15:34
onClipEvent (enterFrame) {
_root.ball.duplicateMovieClip("ball" add i, (i-1));
a=(_root.ball._x-_root._xmouse)/5;
b=(_root.ball._y-_root._ymouse)/5;
_root.ball._x=_root.ball._x-a;
_root.ball._y=_root.ball._y-b;
_root["ball" add i]._x = _root["ball" add i]._x-a;
_root["ball" add i]._y = _root["ball" add i]._y-b;
_root["ball" add i]._xscale = a*5;
_root["ball" add i]._yscale = b*5;
_root["ball" add i]._rotation = random(360);
i=i+1;
}
这些编程有些不明白?????????