home *** CD-ROM | disk | FTP | other *** search
/ PC Home 44 / PC_Home_Issue_44.iso / director / software.dxr / 00123.ls < prev    next >
Encoding:
Text File  |  1996-03-18  |  3.3 KB  |  90 lines

  1. on startMovie
  2.   if the soundLevel = 7 then
  3.     set the visible of sprite 6 to 0
  4.     set the visible of sprite 7 to 0
  5.     set the visible of sprite 8 to 0
  6.     set the visible of sprite 9 to 0
  7.     set the visible of sprite 10 to 0
  8.     set the visible of sprite 11 to 0
  9.     set the visible of sprite 12 to 0
  10.     set the visible of sprite 13 to 1
  11.   else
  12.     if the soundLevel = 6 then
  13.       set the visible of sprite 6 to 0
  14.       set the visible of sprite 7 to 0
  15.       set the visible of sprite 8 to 0
  16.       set the visible of sprite 9 to 0
  17.       set the visible of sprite 10 to 0
  18.       set the visible of sprite 11 to 0
  19.       set the visible of sprite 12 to 1
  20.       set the visible of sprite 13 to 0
  21.     else
  22.       if the soundLevel = 5 then
  23.         set the visible of sprite 6 to 0
  24.         set the visible of sprite 7 to 0
  25.         set the visible of sprite 8 to 0
  26.         set the visible of sprite 9 to 0
  27.         set the visible of sprite 10 to 0
  28.         set the visible of sprite 11 to 1
  29.         set the visible of sprite 12 to 0
  30.         set the visible of sprite 13 to 0
  31.       else
  32.         if the soundLevel = 4 then
  33.           set the visible of sprite 6 to 0
  34.           set the visible of sprite 7 to 0
  35.           set the visible of sprite 8 to 0
  36.           set the visible of sprite 9 to 0
  37.           set the visible of sprite 10 to 1
  38.           set the visible of sprite 11 to 0
  39.           set the visible of sprite 12 to 0
  40.           set the visible of sprite 13 to 0
  41.         else
  42.           if the soundLevel = 3 then
  43.             set the visible of sprite 6 to 0
  44.             set the visible of sprite 7 to 0
  45.             set the visible of sprite 8 to 0
  46.             set the visible of sprite 9 to 1
  47.             set the visible of sprite 10 to 0
  48.             set the visible of sprite 11 to 0
  49.             set the visible of sprite 12 to 0
  50.             set the visible of sprite 13 to 0
  51.           else
  52.             if the soundLevel = 2 then
  53.               set the visible of sprite 6 to 0
  54.               set the visible of sprite 7 to 0
  55.               set the visible of sprite 8 to 1
  56.               set the visible of sprite 9 to 0
  57.               set the visible of sprite 10 to 0
  58.               set the visible of sprite 11 to 0
  59.               set the visible of sprite 12 to 0
  60.               set the visible of sprite 13 to 0
  61.             else
  62.               if the soundLevel = 1 then
  63.                 set the visible of sprite 6 to 0
  64.                 set the visible of sprite 7 to 1
  65.                 set the visible of sprite 8 to 0
  66.                 set the visible of sprite 9 to 0
  67.                 set the visible of sprite 10 to 0
  68.                 set the visible of sprite 11 to 0
  69.                 set the visible of sprite 12 to 0
  70.                 set the visible of sprite 13 to 0
  71.               else
  72.                 if the soundLevel = 0 then
  73.                   set the visible of sprite 6 to 0
  74.                   set the visible of sprite 7 to 0
  75.                   set the visible of sprite 8 to 0
  76.                   set the visible of sprite 9 to 0
  77.                   set the visible of sprite 10 to 0
  78.                   set the visible of sprite 11 to 0
  79.                   set the visible of sprite 12 to 0
  80.                   set the visible of sprite 13 to 1
  81.                 end if
  82.               end if
  83.             end if
  84.           end if
  85.         end if
  86.       end if
  87.     end if
  88.   end if
  89. end
  90.