home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / brik.swf / scripts / frame_3 / DoAction.as
Encoding:
Text File  |  2005-10-06  |  165 b   |  13 lines

  1. var y = 0;
  2. while(y < height)
  3. {
  4.    var x = 0;
  5.    while(x < width)
  6.    {
  7.       removeMovieClip(this["t_" + y + "_" + x]);
  8.       x++;
  9.    }
  10.    y++;
  11. }
  12. stop();
  13.