<mx:List id="lstVendors" dataProvider="{people.person}"
width="250" height="160"
change="handleVendorListChange(event)" >
<mx:itemRenderer >
<mx:Component>
<mx:Canvas width="240"
height="75" >
<mx:Script>
<![CDATA[
import mx.controls.Alert;
]]>
</mx:Script>
<mx:Label
left="50" top="3" text="{data.VendorName}"/>
<mx:TextArea
id="taAddress" left="50" top="21"
text="{data.Address}" editable="false" borderStyle="none" /> <!--
{this.backgroundColor='#B1E0FE'} -->
<mx:Image
source="assets/vendor.png" left="10" top="3"/>
</mx:Canvas>
</mx:Component>
</mx:itemRenderer>
</mx:List> - [flexcoders] TextArea - changing backgroundColor on MouseOver w... djohnson29

