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 / 00359.ls < prev    next >
Encoding:
Text File  |  1999-09-17  |  543 b   |  26 lines

  1. on mouseEnter
  2.   if the visible of window "Help" then
  3.     tell window "help"
  4.       go("grooveM4")
  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 gSolo, gOn, gSync, gFirstClick, virTracklIst
  19.   if gOn and (virTracklIst <> [-1, -1, -1, -1, -1, -1, -1, -1]) and not (the visible of window "help") then
  20.     set gSolo to not gSolo
  21.     puppetSprite(11, 1)
  22.     clickSolo()
  23.   end if
  24.   set the editable of member "fieldBpm" to 0
  25. end
  26.