<theme>
<view titleBar="false" onLoad="aaa();">
<player openStateChange="bbb();"/>
<button id="orz" left="1000" top="0"/>
<text id="W" left="10" top="10"/>
<text id="H" left="10" top="30"/>
<text id="X" left="10" top="50"/>
</view>
</theme>







function aaa()
{
bbb();
}

function bbb()
{
if(player.openState == 13)
{
orz.image = "WMPImage_AlbumArtLarge";
W.value = orz.width;
H.value = orz.height;
X.value = orz.height/orz.width;
}
}