home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 10 / MacAddict_010_1997_06.iso / media / contest.Dxr / 00087_Field_87.txt < prev    next >
Text File  |  1997-03-25  |  1KB  |  47 lines

  1. on setVolumePos
  2.   case(the soundLevel) of
  3.     0: set the locH of sprite 18 to 514
  4.     1: set the locH of sprite 18 to 524
  5.     2: set the locH of sprite 18 to 538
  6.     3: set the locH of sprite 18 to 552
  7.     4: set the locH of sprite 18 to 566
  8.     5: set the locH of sprite 18 to 580
  9.     6: set the locH of sprite 18 to 593
  10.     7: set the locH of sprite 18 to 606
  11.   end case
  12.   
  13.   
  14. on setVolume
  15.   if the locH of sprite 18 <= 514 then 
  16.     set the soundLevel to 0
  17.   end if
  18.   
  19.   if the locH of sprite 18 > 514 then
  20.     set the soundLevel to 1
  21.   end if
  22.   
  23.   if the locH of sprite 18 > 524 then
  24.     set the soundLevel to 2
  25.   end if
  26.   
  27.   if the locH of sprite 18 > 538 then
  28.     set the soundLevel to 3
  29.   end if
  30.   
  31.   if the locH of sprite 18 > 552 then
  32.     set the soundLevel to 4
  33.   end if
  34.   
  35.   if the locH of sprite 18 > 566 then
  36.     set the soundLevel to 5
  37.   end if
  38.   
  39.   if the locH of sprite 18 > 580 then
  40.     set the soundLevel to 6
  41.   end if
  42.   
  43.   if the locH of sprite 18 > 593 then
  44.     set the soundLevel to 7
  45.   end if
  46.   
  47. end