<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="feedRequest.send();"> 

    <mx:Style source="/styles.css" />
    
    <mx:DataGrid 
        id="dg" 
        dataProvider="{feedRequest.lastResult.rss.channel.item}" 
        top="0" bottom="0" left="0" right="0" 
        headerSeparatorSkin="@Embed('/assets/transparent.gif')" >
        
        <mx:columns>
            <mx:DataGridColumn headerText="Posts" dataField="title"/>
            <mx:DataGridColumn headerText="Date" dataField="pubDate"/>
        </mx:columns>
    
    </mx:DataGrid>
    
    <mx:HTTPService 
        id="feedRequest"  
        url="http://www.cynergysystems.com/blogs/rss/andrewtrice" 
        useProxy="false"   />
    
</mx:Application>