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

  1. <THEME>
  2.     <VIEW
  3.         clippingColor = "#FFFFFF"
  4.         backgroundImage = "background.bmp"
  5.         titleBar = "False"
  6.         >
  7.  
  8.         <PLAYER URL = "file:..\\media\\mellow.wma"/>
  9.  
  10.         <SLIDER
  11.             left="30"
  12.             top="30"
  13.             width="240"
  14.             height="10"
  15.             backgroundColor="red"
  16.             thumbImage="thumb.bmp"
  17.             borderSize="5"
  18.             min="0"
  19.             max="wmpprop:player.currentMedia.duration"
  20.             onmousedown="player.controls.currentPosition=value"
  21.             value="wmpprop:player.controls.currentPosition"
  22.             value_onchange="value = player.controls.currentPosition"
  23.             tooltip="Seek (current position)"
  24.             />
  25.  
  26.          <CUSTOMSLIDER 
  27.             left="128"
  28.             top="100"
  29.             min="0"
  30.             max="100"
  31.             toolTip="Volume"
  32.             image="dial.bmp"
  33.             positionImage="dialmap.bmp"
  34.             transparencyColor="#00FFFF"
  35.             value="wmpprop:player.settings.volume"
  36.             value_onchange="player.settings.volume=value;player.settings.mute=false;"
  37.             />
  38.  
  39.     </VIEW>
  40. </THEME>