home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts 22 (Polish) / CA22.BIN / pc / Shared.cst / 00021_ContentsButton.ls < prev    next >
Encoding:
Text File  |  2001-01-01  |  229 b   |  16 lines

  1. on mouseUp
  2.   
  3.   global seenThem
  4.   
  5.   if seenThem = true then
  6.     set the movieRate of sprite 7 = 0
  7.     updateStage
  8.   end if
  9.   
  10.   repeat with x = 1 to 120
  11.     set the puppet of sprite x = false
  12.   end repeat
  13.   
  14.   go "Return"
  15.   
  16. end