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 / 00490.ls < prev    next >
Encoding:
Text File  |  1999-09-17  |  1.6 KB  |  54 lines

  1. on showSeqMessage
  2.   if objectp(the mouseMember) then
  3.     set x to the mouseH
  4.     set y to the mouseV
  5.     if (x >= 175) and (x <= 192) and (y >= 326) and (y <= 343) then
  6.       tell window "help"
  7.         go("seq12")
  8.       end tell
  9.     else
  10.       if (x >= 489) and (x <= 523) and (y >= 407) and (y <= 442) then
  11.         tell window "help"
  12.           go("seq7")
  13.         end tell
  14.       else
  15.         if (x >= 592) and (x <= 611) and (y >= 454) and (y <= 471) then
  16.           tell window "help"
  17.             go("pref")
  18.           end tell
  19.         else
  20.           if (y >= 454) and (y <= 471) and (x >= 615) and (x <= 634) then
  21.             tell window "help"
  22.               go("quit")
  23.             end tell
  24.           else
  25.             if (x >= 567) and (x <= 633) and (y >= 433) and (y <= 446) then
  26.               tell window "help"
  27.                 go("goMix")
  28.               end tell
  29.             else
  30.               if (x >= 567) and (x <= 634) and (y >= 393) and (y <= 408) then
  31.                 tell window "help"
  32.                   go("goGroove")
  33.                 end tell
  34.               else
  35.                 if (x >= 567) and (x <= 633) and (y >= 372) and (y <= 387) then
  36.                   tell window "help"
  37.                     go("goMenu")
  38.                   end tell
  39.                 else
  40.                   if the mouseMember = member 364 of castLib 1 then
  41.                     tell window "help"
  42.                       go("start")
  43.                     end tell
  44.                   end if
  45.                 end if
  46.               end if
  47.             end if
  48.           end if
  49.         end if
  50.       end if
  51.     end if
  52.   end if
  53. end
  54.