home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 October / Chip_2002-10_cd1.bin / zkuste / vbasic / Data / Utils / WMP71SDK.exe / logging.wms < prev    next >
Encoding:
Text File  |  2001-03-02  |  2.2 KB  |  107 lines

  1. <THEME>
  2.     <VIEW
  3.         height = "175"
  4.     >
  5.  
  6.         <TEXT 
  7.             width = "150"
  8.             fontSize = "30"
  9.             hoverFontStyle = "Bold"
  10.             hoverForegroundColor = "red"
  11.             disabledForegroundColor = "#CCCCCC"
  12.             justification = "Center"
  13.             value = "Play"
  14.             cursor = "hand"
  15.             onClick = "JScript: player.URL='file:..\\media\\laure.wma';"
  16.         />
  17.         
  18.         <TEXT
  19.             top = "50"
  20.             width = "150"
  21.             fontSize = "30"
  22.             hoverFontStyle = "Bold"
  23.             hoverForegroundColor = "red"
  24.             disabledForegroundColor = "#CCCCCC"
  25.             justification = "Center"
  26.             value = "Log"
  27.             cursor = "hand"
  28.             onClick = "JScript: theme.logString('You pressed the log button'); ticker.value = 'You pressed the log button.'"
  29.         />
  30.  
  31.         <TEXT
  32.             top = "100"
  33.             width = "150"
  34.             fontSize = "30"
  35.             hoverFontStyle = "Bold"
  36.             hoverForegroundColor = "red"
  37.             justification = "Center"
  38.             value = "Close"
  39.             cursor = "hand"
  40.             onClick = "JScript: view.close();"
  41.         />
  42.  
  43.         <TEXT
  44.             top = "30"
  45.             left = "120"
  46.             width = "200"
  47.             fontSize = "20"
  48.             fontStyle = "Underline"
  49.             justification = "Center"
  50.             value = "Volume"
  51.         />
  52.  
  53.         <TEXT
  54.             top = "60"
  55.             left = "120"
  56.             width = "200"
  57.             fontSize = "40"
  58.             justification = "Center"
  59.             value = "wmpprop:player.settings.volume"
  60.         />
  61.  
  62.         <TEXT
  63.             top = "65"
  64.             left = "142"
  65.             width = "40"
  66.             fontSize = "30"
  67.             hoverFontStyle = "Bold"
  68.             hoverForegroundColor = "red"
  69.             justification = "Center"
  70.             value = "-"
  71.             cursor = "hand"
  72.             toolTip = "decrease volume"
  73.             onClick = "player.settings.volume = player.settings.volume - 5"
  74.         />
  75.  
  76.         <TEXT
  77.             top = "65"
  78.             left = "260"
  79.             width = "40"    
  80.             fontSize = "30"
  81.             hoverFontStyle = "Bold"
  82.             hoverForegroundColor = "red"
  83.             justification = "Center"
  84.             value = "+"
  85.             cursor = "hand"
  86.             toolTip = "increase volume"
  87.             onClick = "player.settings.volume = player.settings.volume + 5"
  88.         />
  89.  
  90.         <TEXT
  91.             id = "ticker"
  92.             top = "155"
  93.             width = "300"
  94.             height = "30"
  95.             fontFace = "System"
  96.             backgroundColor = "blue"
  97.             foregroundColor = "white"
  98.             justification = "Center"
  99.             scrolling = "true"            
  100.             scrollingAmount = "1"
  101.             scrollingDelay = "50"
  102.             value = "wmpprop:player.status"
  103.         />
  104.  
  105.     </VIEW>
  106. </THEME>
  107.