Newer
Older
TUvod / src / searchRow.mxml
@reddawg reddawg on 20 Feb 2008 960 bytes *** empty log message ***
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright 2007-2008 Christopher Olsen <cwolsen@domainatlantic.com>
  
  $Id$
-->
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" width="100%" height="61" creationPolicy="all" enabled="false" disabledOverlayAlpha="0">
	<mx:Image source="http://www.ubixonline.com/images/{data.thumb}"  width="75" height="56" scaleContent="true" horizontalAlign="center" verticalAlign="middle"  x="2" y="2" cachePolicy="on" />
	<mx:Label text="Artist:"  x="85" y="1" height="15"/>
	<mx:Label x="85" y="16" text="Title:" height="16"/>
	<mx:Label x="85" y="31" text="Genre:" height="16"/>
	<mx:Label x="85" y="45" text="Length:" height="16"/>
	<mx:Text x="135" y="1" text="{data.artist}" width="100%" height="16"/>
	<mx:Text x="135" y="16" text="{data.title}" width="100%"/>
	<mx:Text x="135" y="31" text="{data.genre}" width="100%"/>
	<mx:Text x="135" y="45" text="{data.length}" width="100%" height="16"/>
</mx:Canvas>