home *** CD-ROM | disk | FTP | other *** search
- this.bubcount = 0;
- this.onEnterFrame = function()
- {
- var _loc2_ = random(10);
- if(_loc2_ < 1)
- {
- t = this.attachMovie("bomtoons_bub2","bub",this.bubcount);
- t._x = random(75) - 50;
- t._y = random(this.height);
- t._xscale = random(30) + 20;
- t._yscale = t._xscale;
- t.Xvel = this._parent._parent.dude.Xvel;
- t.onEnterFrame = function()
- {
- if(this.sett != true)
- {
- this.Yvel = random(10);
- this.sett = true;
- }
- this._x -= this.Xvel;
- this.Xvel *= 0.99;
- this._y -= this.Yvel + 5;
- };
- this.bubcount += 1;
- }
- };
-