摘要: 函数如下:MovieClip.prototype.smoothMove=function(sp,tx,ty){if(tx!=0)this._x=this._x+sp*(tx-this._x);//缓动if(ty!=0)this._y=this._y+sp*(ty-this._y);//缓动};MovieClip.prototype.MoveTo=function(sp,sx,sy){ //函数中第... 阅读全文
posted @ 2008-03-28 21:56 zhangsir 阅读(906) 评论(3) 推荐(0) 编辑