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

  1. <THEME>
  2.     <VIEW
  3.         clippingColor = "#FFFFFF"
  4.         backgroundImage = "background.bmp"
  5.         titleBar = "False"
  6.         >
  7.  
  8.         <PLAYER
  9.             openState_onchange = "tArtistName.value = player.currentMedia.getItemInfo('author');"
  10.             >
  11.         </PLAYER>
  12.  
  13.         <BUTTONGROUP
  14.             mappingImage="map.bmp"
  15.             hoverImage="hover.bmp"
  16.             >
  17.             <PLAYELEMENT
  18.                 mappingColor="#00FF00"
  19.                 URL = "file:..\\media\\mellow.wma"
  20.                 />
  21.             <STOPELEMENT
  22.                 mappingColor="#FF0000"
  23.                 />
  24.         </BUTTONGROUP>
  25.  
  26.         <TEXT
  27.             id = "tStatusTag"
  28.             left = "75"
  29.             top = "25"
  30.             width = "100"
  31.             justification = "right"
  32.             value = "Current status:"
  33.             />
  34.  
  35.         <STATUSTEXT
  36.             left = "jscript:tStatusTag.left + tStatusTag.width + 10;"
  37.             top = "jscript:tStatusTag.top;"
  38.             width = "100"
  39.             justification = "left"
  40.             />
  41.  
  42.         <TEXT
  43.             id = "tArtistTag"
  44.             left = "jscript:tStatusTag.left"
  45.             top = "jscript:tStatusTag.top + 25"
  46.             width = "100"
  47.             justification = "right"
  48.             value = "Artist name:"
  49.             />
  50.  
  51.         <TEXT
  52.             id = "tArtistName"
  53.             left = "jscript:tArtistTag.left + tArtistTag.width + 10;"
  54.             top = "jscript:tArtistTag.top;"
  55.             width = "100"
  56.             justification = "left"
  57.             value = "wmpprop:player.currentMedia.author"
  58.             />
  59.  
  60.         <TEXT
  61.             id = "tTitleTag"
  62.             left = "jscript:tArtistTag.left"
  63.             top = "jscript:tArtistTag.top + 25"
  64.             width = "100"
  65.             justification = "right"
  66.             value = "Track title:"
  67.             />
  68.  
  69.         <TEXT
  70.             left = "jscript:tTitleTag.left + tTitleTag.width + 10;"
  71.             top = "jscript:tTitleTag.top;"
  72.             width = "100"
  73.             justification = "left"
  74.             value = "wmpprop:player.currentMedia.name"
  75.             />
  76.  
  77.         <TEXT
  78.             id = "tPositionTag"
  79.             left = "jscript:tTitleTag.left"
  80.             top = "jscript:tTitleTag.top + 25"
  81.             width = "100"
  82.             justification = "right"
  83.             value = "Current position:"
  84.             />
  85.  
  86.         <CURRENTPOSITIONTEXT
  87.             left = "jscript:tPositionTag.left + tPositionTag.width + 10;"
  88.             top = "jscript:tPositionTag.top;"
  89.             width = "100"
  90.             justification = "left"
  91.             />
  92.  
  93.         <TEXT
  94.             id = "tDurationTag"
  95.             left = "jscript:tPositionTag.left"
  96.             top = "jscript:tPositionTag.top + 25"
  97.             width = "100"
  98.             justification = "right"
  99.             value = "Track duration:"
  100.             />
  101.  
  102.         <DURATIONTEXT
  103.             left = "jscript:tDurationTag.left + tDurationTag.width + 10;"
  104.             top = "jscript:tDurationTag.top;"
  105.             width = "100"
  106.             justification = "left"
  107.             />
  108.  
  109.         <PROGRESSBAR
  110.             enabled = "false"
  111.             cursor = "system"
  112.             left = "40"
  113.             top = "155"
  114.             width = "220"
  115.             height = "10"
  116.             tooltip = "Current position"
  117.             backgroundColor = "red"
  118.             thumbImage = "thumb.bmp"
  119.             min = "0"
  120.             max = "wmpprop:player.currentMedia.duration"
  121.             value = "wmpprop:player.controls.currentPosition"
  122.             />
  123.  
  124.     </VIEW>
  125. </THEME>