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

  1. score = 0;
  2. combo = 0;
  3. ball_placer._visible = 0;
  4. ball_placer._rotation = 0;
  5. var i = 0;
  6. while(i < 8)
  7. {
  8.    var x = (_root.absloc(ball_placer.target).x - this._x) * 100 / this._xscale;
  9.    var y = (_root.absloc(ball_placer.target).y - this._y) * 100 / this._yscale;
  10.    new_ball(x,y,0,0,0);
  11.    ball_placer._rotation += 45;
  12.    i++;
  13. }
  14. level_up();
  15.