home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 October / Chip_2002-10_cd1.bin / zkuste / vbasic / Data / Utils / WMP71SDK.exe / text.wms < prev    next >
Encoding:
Text File  |  2001-03-02  |  1.9 KB  |  101 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.             justification = "Center"
  12.             value = "Play"
  13.             cursor = "hand"
  14.             onClick = "JScript: player.URL='file:.\\..\\media\\laure.wma';"
  15.         />
  16.         
  17.         <TEXT
  18.             top = "50"
  19.             width = "150"
  20.             fontSize = "30"
  21.             hoverFontStyle = "Bold"
  22.             hoverForegroundColor = "red"
  23.             justification = "Center"
  24.             value = "Stop"
  25.             cursor = "hand"
  26.             onClick = "JScript: player.controls.stop();"
  27.         />
  28.  
  29.         <TEXT
  30.             top = "100"
  31.             width = "150"
  32.             fontSize = "30"
  33.             hoverFontStyle = "Bold"
  34.             hoverForegroundColor = "red"
  35.             justification = "Center"
  36.             value = "Close"
  37.             cursor = "hand"
  38.             onClick = "JScript: view.close();"
  39.         />
  40.  
  41.         <TEXT
  42.             top = "30"
  43.             left = "120"
  44.             width = "200"
  45.             fontSize = "20"
  46.             fontStyle = "Underline"
  47.             justification = "Center"
  48.             value = "Volume"
  49.         />
  50.  
  51.         <TEXT
  52.             top = "60"
  53.             left = "120"
  54.             width = "200"
  55.             fontSize = "40"
  56.             justification = "Center"
  57.             value = "wmpprop:player.settings.volume"
  58.         />
  59.  
  60.         <TEXT
  61.             top = "65"
  62.             left = "142"
  63.             width = "40"
  64.             fontSize = "30"
  65.             hoverFontStyle = "Bold"
  66.             hoverForegroundColor = "red"
  67.             justification = "Center"
  68.             value = "-"
  69.             cursor = "hand"
  70.             onClick = "player.settings.volume = player.settings.volume - 5"
  71.         />
  72.  
  73.         <TEXT
  74.             top = "65"
  75.             left = "260"
  76.             width = "40"    
  77.             fontSize = "30"
  78.             hoverFontStyle = "Bold"
  79.             hoverForegroundColor = "red"
  80.             justification = "Center"
  81.             value = "+"
  82.             cursor = "hand"
  83.             onClick = "player.settings.volume = player.settings.volume + 5"
  84.         />
  85.  
  86.         <TEXT
  87.             top = "155"
  88.             width = "300"
  89.             height = "30"
  90.             backgroundColor = "blue"
  91.             foregroundColor = "white"
  92.             justification = "Center"
  93.             scrolling = "true"            
  94.             scrollingAmount = "1"
  95.             scrollingDelay = "50"
  96.             value = "wmpprop:player.status"
  97.         />
  98.  
  99.     </VIEW>
  100. </THEME>
  101.