home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 February / WPCFEB97.ISO / multi / acacia / results.dxr / 00010.ls < prev    next >
Encoding:
Text File  |  1996-11-13  |  303 b   |  18 lines

  1. on mouseDown
  2.   global gQuitDown
  3.   set gQuitDown to 1
  4.   set the memberNum of sprite 8 to 17
  5. end
  6.  
  7. on mouseUp
  8.   global gQuitDown
  9.   if gQuitDown then
  10.     set the memberNum of sprite 8 to 18
  11.     set gQuitDown to 0
  12.     updateStage()
  13.     puppetSprite(8, 0)
  14.     puppetSprite(9, 0)
  15.     go("finish")
  16.   end if
  17. end
  18.