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

  1. on mouseEnter
  2.   if the visible of window "Help" then
  3.     tell window "help"
  4.       go("synth11")
  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 gOn, gOnSynth, gSynthSel, folderSynthList
  19.   if gOn and (folderSynthList <> []) and not (the visible of window "help") then
  20.     IKSynthStop()
  21.     set the visible of sprite 3 to 1
  22.     set gOnSynth to 0
  23.     if gSynthSel then
  24.       set the locH of sprite 74 to -20
  25.       set gSynthSel to 0
  26.     end if
  27.   end if
  28. end
  29.