home *** CD-ROM | disk | FTP | other *** search
/ PC Home 49 / PC_Home_Issue_49.iso / winprogs / playsk / dressup.dxr / 00067.ls < prev    next >
Encoding:
Text File  |  1996-06-30  |  377 b   |  19 lines

  1. on mouseUp
  2.   global gCorrectPosList
  3.   set counter to 0
  4.   repeat with spritenum in gCorrectPosList
  5.     if the visible of sprite spritenum = 1 then
  6.       set counter to counter + 1
  7.     end if
  8.   end repeat
  9.   if counter < 6 then
  10.     play frame "CORRECT CLOTHES"
  11.   else
  12.     play frame "WELLDONE"
  13.   end if
  14.   play frame "I LOOK SILLY"
  15.   unLoadCast()
  16.   sound fadeOut 2
  17.   play done
  18. end
  19.