home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactif 7 / cd.iso / pc / PC / Demos / GroovMak / data1.cab / Program_Executable_Files / Media / MenuSong.dxr / 00121.ls < prev    next >
Encoding:
Text File  |  1999-09-17  |  772 b   |  37 lines

  1. on mouseEnter
  2.   if the visible of window "helpM" then
  3.     tell window "helpM"
  4.       go("menuSong8")
  5.     end tell
  6.   end if
  7. end
  8.  
  9. on mouseLeave
  10.   if the visible of window "helpM" then
  11.     tell window "helpM"
  12.       go("start")
  13.     end tell
  14.   end if
  15. end
  16.  
  17. on mouseDown
  18.   if not (the visible of window "helpM") then
  19.     repeat while the mouseDown
  20.       set the memberNum of sprite 29 to the number of member "Hnet"
  21.       updateStage()
  22.     end repeat
  23.   end if
  24. end
  25.  
  26. on mouseUp
  27.   global gNet, gPath, gClickNet
  28.   if not (the visible of window "helpM") then
  29.     cursor(4)
  30.     set the memberNum of sprite 29 to the number of member "net"
  31.     updateStage()
  32.     set gNet to getNetText("http://www.groovemaker.com/songpreview/list.txt")
  33.     set gClickNet to 1
  34.     cursor(-1)
  35.   end if
  36. end
  37.