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

  1. on mouseEnter
  2.   if the visible of window "Help" then
  3.     tell window "help"
  4.       go("mix9")
  5.     end tell
  6.   end if
  7. end
  8.  
  9. on mouseLeave
  10.   if the visible of window "Help" then
  11.     tell window "help"
  12.       go("start")
  13.     end tell
  14.   end if
  15. end
  16.  
  17. on mouseUp
  18.   global gList, gRand, gRadio
  19.   if not (the visible of window "help") then
  20.     set gList to not gList
  21.     if gList then
  22.       set the memberNum of sprite 43 to the number of member "Hlist"
  23.     else
  24.       set the memberNum of sprite 43 to the number of member "list"
  25.     end if
  26.     if gRand then
  27.       set gRand to 0
  28.       set the memberNum of sprite 44 to the number of member "random"
  29.     end if
  30.     if gRadio then
  31.       set gRadio to 0
  32.       set the memberNum of sprite 48 to the number of member "radio"
  33.     end if
  34.     updateStage()
  35.   end if
  36.   set the editable of member "fieldBpm" to 0
  37. end
  38.