|
楼主 |
发表于 2009-1-12 17:24:30
|
显示全部楼层
setProperty("", _quality, "best");
setProperty("", _quality, "best");
m.onEnterFrame = function ()
{
if (_ymouse >= 275)
{
if (this._y <= 80 - this._height)
{
this._y = 80 - this._height;
}
else
{
this._y = this._y - Math.floor((_ymouse - 275) / 60);
} // end else if
}
else if (this._y >= -10)
{
this._y = -10;
}
else
{
this._y = this._y + Math.floor((275 - _ymouse) / 60);
} // end else if
};
上面是这个flash的动作函数,还望高手帮忙啊。
[ 本帖最后由 春夏秋冬 于 2009-1-13 00:49 编辑 ] |
|