home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / blobs.swf / scripts / DefineSprite_81 / frame_38 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  381 b   |  21 lines

  1. do
  2. {
  3.    var sx = stand_x.charAt(i);
  4.    var sy = stand_y.charAt(i);
  5.    var rstand = "s" + sx + sy;
  6.    var nxt = false;
  7.    this[rstand].gotoAndPlay("remove");
  8.    if(this[rstand].blob != "")
  9.    {
  10.       this[this[rstand].blob].gotoAndPlay("remove");
  11.       nxt = true;
  12.    }
  13.    i++;
  14.    if(i == stand_x.length)
  15.    {
  16.       gotoAndPlay(41);
  17.    }
  18. }
  19. while(nxt == false);
  20.  
  21.