上善若水
查看上善若水的博客
金钱 | : 363 |
Level | : 0 |
发帖数 | : 22 |
最后登陆 | : 2007/8/17 |
注册时间 | : 2006/1/21 |
|
对象绑定如下代码 onClipEvent(enterFrame){ if(this._x!=_root._xmouse){ if(this._x<_root._xmouse){ this._x=this._x+(_root._xmouse-this._x)/10; } if(this._x>_root._xmouse){ this._x=this._x-(this._x-_root._xmouse)/10; } } if(this._y!=_root._ymouse){ if(this._y<_root._ymouse){ this._y=this._y+(_root._ymouse-this._y)/10; } if(this._y>_root._ymouse){ this._y=this._y-(this._y-_root._ymouse)/10; } } }
|