home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / PrettyBang.swf / scripts / DefineSprite_93 / frame_11 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  297 b   |  15 lines

  1. this._rotation += 10;
  2. this._y += 8;
  3. if(_parent.cur_balls < _parent.max_balls / 2)
  4. {
  5.    _parent.new_ball(this._x,this._y,this._rotation,_parent.speed_step,1);
  6.    _root.shot_sfx.start();
  7. }
  8. if(this._xscale > 0)
  9. {
  10.    this._xscale -= 5;
  11.    this._yscale -= 5;
  12.    prevFrame();
  13.    play();
  14. }
  15.