引用:
原帖由 清风掠影 于 2008-7-6 21:13 发表 
花如果只在框里飘会更好的说~
我调了几次都没调好,你帮调下,下面是语句:
for (var i = 0; i<30; i++) {
var mc = this.attachMovie("hua", "hua"+i, _root.getNextHighestDepth());
mc._x = Math.random()*500;
mc._y = Math.random()*360;
mc._xscale = mc._yscale=Math.random()*15+5;
mc._alpha = mc.Math.random()*60;
mc._rotation = Math.random()*360;
mc.spx = Math.random()*8-2;
mc.spy = Math.random()*2+3;
mc.spr = Math.random()*10-5;
mc.onEnterFrame = function() {
if (Math.random()<0.2) {
this.spx = Math.random()*8-2;
this.spy = Math.random()*2+3;
this.spr = Math.random()*10-5;
}
this._x = (this._x+this.spx)%500;
this._y = (this._y+this.spy-10)%360+10;
this._rotation += this.spr;
};
}