home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Review 54 / CDREVIEW.iso / kerouac / jack.dxr / 00202.ls < prev    next >
Encoding:
Text File  |  1996-02-15  |  572 b   |  24 lines

  1. on mouseDown
  2.   set spr to the clickOn
  3.   set cnum to the castNum of sprite spr
  4.   set the castNum of sprite spr to cnum + 1
  5.   updateStage()
  6.   repeat while the mouseDown = 1
  7.     if rollOver(spr) then
  8.       set the castNum of sprite spr to cnum + 1
  9.     else
  10.       set the castNum of sprite spr to cnum
  11.     end if
  12.     updateStage()
  13.   end repeat
  14.   set the castNum of sprite spr to cnum
  15.   updateStage()
  16. end
  17.  
  18. on mouseUp
  19.   set spr to the clickOn
  20.   if rollOver(spr) then
  21.     alert("The index is unavailable in this demo. Please click the Buddha icon for information.")
  22.   end if
  23. end
  24.