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

  1. <THEME>
  2.     <VIEW
  3.         height = "175"
  4.         width = "300"
  5.     >
  6.  
  7.         <TEXT 
  8.             width = "150"
  9.             fontSize = "30"
  10.             hoverFontStyle = "Bold"
  11.             hoverForegroundColor = "red"
  12.             disabledForegroundColor = "#CCCCCC"
  13.             justification = "Center"
  14.             value = "Play"
  15.             cursor = "hand"
  16.             enabled = "wmpenabled:player.controls.play"
  17.             onClick = "JScript: player.controls.play();"
  18.         />
  19.         
  20.         <TEXT
  21.             top = "50"
  22.             width = "150"
  23.             fontSize = "30"
  24.             hoverFontStyle = "Bold"
  25.             hoverForegroundColor = "red"
  26.             disabledForegroundColor = "#CCCCCC"
  27.             justification = "Center"
  28.             value = "Stop"
  29.             cursor = "hand"
  30.             enabled = "wmpenabled:player.controls.stop"
  31.             onClick = "JScript: player.controls.stop();"
  32.         />
  33.  
  34.         <TEXT
  35.             top = "100"
  36.             width = "150"
  37.             fontSize = "30"
  38.             hoverFontStyle = "Bold"
  39.             hoverForegroundColor = "red"
  40.             justification = "Center"
  41.             value = "Close"
  42.             cursor = "hand"
  43.             onClick = "JScript: view.close();"
  44.         />
  45.  
  46.         <TEXT
  47.             top = "100"
  48.             left = "120"
  49.             width = "200"
  50.             fontSize = "30"
  51.             hoverFontStyle = "Bold"
  52.             hoverForegroundColor = "red"
  53.             justification = "Center"
  54.             value = "Playlist"
  55.             toolTip = "toggle playlist"
  56.             cursor = "hand"
  57.             onClick = "JScript: if (view.height==175) {view.height='375'} else {view.height='175'};"
  58.         />
  59.  
  60.         <TEXT
  61.             top = "10"
  62.             left = "120"
  63.             width = "200"
  64.             fontSize = "20"
  65.             fontStyle = "Underline"
  66.             justification = "Center"
  67.             value = "Volume"
  68.         />
  69.  
  70.         <TEXT
  71.             top = "40"
  72.             left = "120"
  73.             width = "200"
  74.             fontSize = "40"
  75.             justification = "Center"
  76.             value = "wmpprop:player.settings.volume"
  77.         />
  78.  
  79.         <TEXT
  80.             top = "45"
  81.             left = "142"
  82.             width = "40"
  83.             fontSize = "30"
  84.             hoverFontStyle = "Bold"
  85.             hoverForegroundColor = "red"
  86.             justification = "Center"
  87.             value = "-"
  88.             cursor = "hand"
  89.             toolTip = "decrease volume"
  90.             onClick = "player.settings.volume = player.settings.volume - 5"
  91.         />
  92.  
  93.         <TEXT
  94.             top = "45"
  95.             left = "260"
  96.             width = "40"    
  97.             fontSize = "30"
  98.             hoverFontStyle = "Bold"
  99.             hoverForegroundColor = "red"
  100.             justification = "Center"
  101.             value = "+"
  102.             cursor = "hand"
  103.             toolTip = "increase volume"
  104.             onClick = "player.settings.volume = player.settings.volume + 5"
  105.         />
  106.  
  107.         <TEXT
  108.             top = "155"
  109.             width = "300"
  110.             height = "30"
  111.             fontFace = "System"
  112.             backgroundColor = "blue"
  113.             foregroundColor = "white"
  114.             justification = "Center"
  115.             scrolling = "true"            
  116.             scrollingAmount = "1"
  117.             scrollingDelay = "50"
  118.             value = "wmpprop:player.status"
  119.         />
  120.  
  121.         <PLAYLIST
  122.             top = "175"
  123.             width = "300"
  124.             height = "200"
  125.             backgroundColor = "black"
  126.             foregroundColor = "white"
  127.             itemPlayingColor = "blue"
  128.             itemPlayingBackgroundColor = "white"
  129.             columns = "name=Title;artist=Artist"
  130.         />
  131.  
  132.     </VIEW>
  133. </THEME>
  134.