home *** CD-ROM | disk | FTP | other *** search
/ Computer Life: SuperPac / SuperPac (Computer Life Magazine)(Ziff-Davis)(1995).ISO / pc / demos / nile / credits.dir / 00021.ls < prev    next >
Encoding:
Text File  |  1995-05-04  |  663 b   |  32 lines

  1. on startMovie
  2.   set the keyDownScript to "VolumeKeyPressed the key"
  3. end
  4.  
  5. on VolumeKeyPressed QtyChar
  6.   filterQuit(QtyChar)
  7.   set QtyCharCode to charToNum(QtyChar)
  8.   if (QtyCharCode >= 48) and (QtyCharCode <= 57) then
  9.     set QtyNum to value(QtyChar)
  10.     if QtyNum > 7 then
  11.       set QtyNum to 7
  12.     end if
  13.     set the soundLevel to QtyNum
  14.   end if
  15. end
  16.  
  17. on filterQuit keyPressed
  18.   global onIBM
  19.   if onIBM then
  20.     if the optionDown and (charToNum(keyPressed) = 27) then
  21.       quit()
  22.     end if
  23.     if the commandDown and (the keyCode = 12) then
  24.       quit()
  25.     end if
  26.   else
  27.     if the commandDown and (the keyCode = 12) then
  28.       quit()
  29.     end if
  30.   end if
  31. end
  32.