home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 30 / CMi30.iso / pc / main / 00016.ls < prev    next >
Encoding:
Text File  |  2001-01-04  |  1.1 KB  |  44 lines

  1. on mainRoller
  2.   repeat with x = 22 to 27
  3.     set the visible of sprite x to 0
  4.   end repeat
  5.   repeat with x = 15 to 20
  6.     set the cursor of sprite x to 280
  7.     set the visible of sprite 31 to 0
  8.     set the visible of sprite 37 to 0
  9.   end repeat
  10.   set the visible of sprite 31 to 0
  11.   if rollOver(15) then
  12.     set the visible of sprite 22 to 1
  13.   else
  14.     if rollOver(16) then
  15.       set the visible of sprite 23 to 1
  16.     else
  17.       if rollOver(17) then
  18.         set the visible of sprite 24 to 1
  19.       else
  20.         if rollOver(18) then
  21.           set the visible of sprite 25 to 1
  22.         else
  23.           if rollOver(19) then
  24.             set the visible of sprite 26 to 1
  25.           else
  26.             if rollOver(20) then
  27.               set the visible of sprite 27 to 1
  28.             else
  29.               if rollOver(32) then
  30.                 set the visible of sprite 31 to 1
  31.               else
  32.                 if rollOver(36) then
  33.                   set the visible of sprite 37 to 1
  34.                 else
  35.                 end if
  36.               end if
  37.             end if
  38.           end if
  39.         end if
  40.       end if
  41.     end if
  42.   end if
  43. end
  44.