home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 January / WPCJAN97.ISO / zarnac.dxr / 00103_LEAVECOMIC.ls < prev    next >
Encoding:
Text File  |  1996-11-18  |  305 b   |  16 lines

  1. on LEAVECOMIC
  2.   global leaveNow
  3.   if the mouseDown then
  4.     set leaveNow to 1
  5.   end if
  6.   if the mouseDown and (leaveNow = 1) then
  7.     set leaveNow to 0
  8.     set the volume of sound 1 to 255
  9.     set the volume of sound 2 to 255
  10.     sound stop 1
  11.     sound stop 2
  12.     updateStage()
  13.     play done
  14.   end if
  15. end
  16.