почему не в мх коде ?

Код AS3:
<?xml version="1.0" encoding="utf-8"?>
<s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
autoDrawBackground="false"
width="110" height="75">
<fx:Script>
<![CDATA[
public override function set data(value:Object):void
{
thumbImage.source =value.image;
super.data = value;
}
]]>
</fx:Script>
<s:Image id="thumbImage" buttonMode="true"
right="0" top="0" left="10" bottom="0"
smooth="true" smoothingQuality="high"/>
<s:Label text="{data.text}">
<s:Label text="{data.text2}">
</s:ItemRenderer>