home *** CD-ROM | disk | FTP | other *** search
/ Mundo do CD-ROM 2 / CDROM02.iso / tlapse / tloview.exe / OVERVIEW.DXR / 00104.ls < prev    next >
Encoding:
Text File  |  1996-04-26  |  503 b   |  23 lines

  1. on mouseUp
  2.   set the castNum of sprite the clickOn to 108
  3.   puppetSprite(the clickOn, 0)
  4.   if (the mouseCast = 108) or (the mouseCast = 109) then
  5.     FadeAllAudio()
  6.     go("end")
  7.   end if
  8.   updateStage()
  9. end
  10.  
  11. on mouseDown
  12.   set snum to the clickOn
  13.   puppetSprite(snum, 1)
  14.   repeat while the mouseDown
  15.     if (the mouseCast = 108) or (the mouseCast = 109) then
  16.       set the castNum of sprite snum to 109
  17.     else
  18.       set the castNum of sprite snum to 108
  19.     end if
  20.     updateStage()
  21.   end repeat
  22. end
  23.