Using a TileList
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
import mx.collections.ArrayCollection;
[Bindable]
public var myAC:ArrayCollection = new ArrayCollection([
{name:"A", email:"j@d.com",url:"http://www.a.com"},
{name:"B", email:"t@d.com",url:"http://www.b.com"},
{name:"C", email:"f@d.com",url:"http://www.c.com"}
]);
</mx:Script>
<mx:TileList id="myFriends" dataProvider="{myAC}" labelField="name" />
</mx:Application>
Related examples in the same category