home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September (Special) / Chip-Special_2002-09_Digitalni-Video.bin / servis / wm9 / mpsetupXP.exe / RCDATA / CABINET / wmploc.DLL / 256 / SRSWOW.JS < prev    next >
Text File  |  2002-08-19  |  786b  |  54 lines

  1. // Windows Media Player - Copyright 2000 Microsoft Corporation.
  2. //<script>
  3.  
  4. //
  5. // Initialization
  6. //
  7.  
  8. function InitSRS()
  9. {
  10.     if (PlayingDVD())
  11.     {
  12.         nextSpeakerSize.enabled=false;
  13.         srsOnOff.enabled=false;
  14.         SetDisabledUI(true);
  15.     }
  16.     else
  17.     {
  18.         srsOnOff.enabled=true;
  19.         UpdateSRSOnOff();
  20.     }
  21. }
  22.  
  23. //
  24. // Updating
  25. //
  26.  
  27. function UpdateSRSOnOff()
  28. {
  29.     if (eq.enhancedAudio == true)
  30.     {
  31.         nextSpeakerSize.enabled=true;
  32.         srsOnOff.value="res://wmploc.dll/RT_STRING/#1833";
  33.         SetDisabledUI(false);
  34.     }
  35.     else
  36.     {
  37.         nextSpeakerSize.enabled=false;
  38.         srsOnOff.value="res://wmploc.dll/RT_STRING/#1832";
  39.         SetDisabledUI(true);
  40.     }
  41. }
  42.  
  43. function NextSpeakerSize()
  44. {
  45.     var index = eq.speakerSize;
  46.  
  47.     index++;
  48.     if (index > 2)
  49.         index = 0;
  50.  
  51.     eq.speakerSize = index;
  52. }
  53.  
  54.