home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / ChipCD_1.03.iso / oddech / bechpack / bechpack.exe / scripts / frame_1105 / DoAction.as
Text File  |  2002-10-29  |  295b  |  14 lines

  1. x = Number(random(18) * 15) + 67.5;
  2. y = Number(random(30) * 15) + 22.5;
  3. count = Number(count) + 1;
  4. if(Number(count) == 20)
  5. {
  6.    call("clear");
  7. }
  8. else
  9. {
  10.    duplicateMovieClip("/cell",count,16384 + count);
  11.    setProperty("/" add count, _X, x);
  12.    setProperty("/" add count, _Y, y);
  13. }
  14.