home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / MiniclipsTetris.swf / scripts / DefineSprite_185 / frame_15 / DoAction.as
Encoding:
Text File  |  2005-08-04  |  299 b   |  17 lines

  1. col = 1;
  2. while(_parent.cols >= col)
  3. {
  4.    eval("_parent.Box" + col + "_" + row).gotoAndStop(brickType);
  5.    eval("_parent.Box" + col + "_" + row).filled = false;
  6.    col++;
  7. }
  8. row++;
  9. if(_parent.rows < row)
  10. {
  11.    if(!screenFilled)
  12.    {
  13.       _parent.showTitle();
  14.    }
  15.    gotoAndStop(1);
  16. }
  17.