home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 6 / cybernetinteractivo06.ISO / demos / kerouac / jack.dxr / 00168.ls < prev    next >
Encoding:
Text File  |  1996-02-15  |  491 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.     go("SFHelp")
  22.   end if
  23. end
  24.