<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:List width="150">
<mx:dataProvider>
<mx:Array>
<mx:Object song="A" album="a" artist="AA" />
<mx:Object song="B" album="b" artist="BB" />
<mx:Object song="C" album="c" artist="CC" />
</mx:Array>
</mx:dataProvider>
</mx:List>
</mx:Application>
|