home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 February / WPCFEB97.ISO / multi / acacia / box.dxr / 00005.ls < prev    next >
Encoding:
Text File  |  1996-11-05  |  271 b   |  17 lines

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