home *** CD-ROM | disk | FTP | other *** search
/ Mac Ga Ichiban! 1996 October / macgaichiban199610.bin / MOVIES / INTERNET.Dxr / 00027.ls < prev    next >
Encoding:
Text File  |  1996-08-12  |  693 b   |  24 lines

  1. global ccname
  2.  
  3. on button
  4.   set cname to item 1 of the name of cast the castNum of sprite clickOn()
  5.   set the castNum of sprite clickOn() to the number of cast (cname & ",on")
  6.   updateStage()
  7.   repeat while the stillDown
  8.     if rollOver(clickOn()) then
  9.       set the castNum of sprite clickOn() to the number of cast (cname & ",on")
  10.       updateStage()
  11.       next repeat
  12.     end if
  13.     set the castNum of sprite clickOn() to the number of cast (cname & ",off")
  14.     updateStage()
  15.   end repeat
  16.   set the castNum of sprite clickOn() to the number of cast (cname & ",off")
  17.   updateStage()
  18. end
  19.  
  20. on gobutton
  21.   set ccname to item 1 of the name of cast the castNum of sprite clickOn()
  22.   go(ccname)
  23. end
  24.