home *** CD-ROM | disk | FTP | other *** search
/ Hidden Truth / Hidden Truth.iso / data / vjent / et5.dcr / 00044.ls < prev    next >
Encoding:
Text File  |  1996-09-06  |  359 b   |  20 lines

  1. on mouseDown
  2.   puppetSprite(4, 1)
  3.   set the memberNum of sprite 4 to the memberNum of sprite 4 + 1
  4.   updateStage()
  5.   repeat while stillDown()
  6.   end repeat
  7. end
  8.  
  9. on mouseUp
  10.   set the memberNum of sprite 4 to the memberNum of sprite 4 - 1
  11.   updateStage()
  12.   puppetSprite(4, 0)
  13.   if rollOver(4) then
  14.     playSound()
  15.     go(#next)
  16.   else
  17.     nothing()
  18.   end if
  19. end
  20.