home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / badapple.swf / scripts / DefineSprite_42 / frame_85 / DoAction.as
Encoding:
Text File  |  2007-03-28  |  366 b   |  18 lines

  1. tellTarget("/")
  2. {
  3.    countx = 1;
  4.    county = 1;
  5.    while(eval("/thescript:numx") >= countx)
  6.    {
  7.       while(eval("/thescript:numy") >= county)
  8.       {
  9.          removeMovieClip("apple" add countx add county);
  10.          removeMovieClip("number" add countx add county);
  11.          county += 1;
  12.       }
  13.       county = 1;
  14.       countx += 1;
  15.    }
  16. }
  17. stop();
  18.