home *** CD-ROM | disk | FTP | other *** search
/ Champak 48 / cdrom_image.iso / Games / babychute.swf / scripts / DefineSprite_62 / frame_94 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  371 b   |  15 lines

  1. _root.puke._x = this._x;
  2. _root.puke._y = this._y + 120;
  3. _root.puke.onEnterFrame = function()
  4. {
  5.    this._y += 5;
  6.    if(this.hitTest(_root.balloon.hitarea))
  7.    {
  8.       this.onEnterFrame = undefined;
  9.       _root.pointBox += _root.balloon.balloonNum;
  10.       this._x = -2000;
  11.       _root.balloon.gotoAndPlay(2);
  12.       _root.balloon.pukeinfo._visible = 0;
  13.    }
  14. };
  15.