Κώδικας: Επιλογή όλων
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="myRSSFeed.send()">
<mx:HTTPService id="myRSSFeed" url="proxy.php"/>
<mx:DataGrid id="myDataGrid" dataProvider="{myRSSFeed.lastResult.rss.channel.item}" width="100%" height="200" click="{myTextArea.htmlText = myRSSFeed.lastResult.rss.channel.item[myDataGrid.selectedIndex].description}">
<mx:columns>
<mx:DataGridColumn headerText="Date" dataField="pubDate" textAlign="left"/>
<mx:DataGridColumn headerText="Title" dataField="title" textAlign="center"/>
</mx:columns>
</mx:DataGrid>
<mx:TextArea id="myTextArea" width="100%" height="300"/>
</mx:Application>