
Код AS3:
<?xml version="1.0" encoding="utf-8"?>
<!-- MixedGrid -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:DataGrid width="100%" height="100%">
<mx:dataProvider>
<mx:XMLList>
<frame label="frame0"/>
<motion label="motion0"/>
<frame label="frame1"/>
<motion label="motion1"/>
<frame label="frame2"/>
<motion label="motion2"/>
<frame label="frame3"/>
<motion label="motion3"/>
<frame label="frame4"/>
<motion label="motion4"/>
<frame label="frame5"/>
<motion label="motion5"/>
<frame label="frame6"/>
<motion label="motion6"/>
</mx:XMLList>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="@label" headerText="Frames and Motion"/>
</mx:columns>
</mx:DataGrid>
</mx:Application>
?