Hi,
I am new to Flex environment.Please can you help me with a 
problem.When I am trying to run the following code, I am getting 
error "1119: Access of possibly undefined property result through a 
reference with  static type mx.rpc.http.mxml:HTTPService"

Code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"; 
layout="absolute" creationComplete="feedRequest.send()">
        <mx:HTTPService id="feedRequest" 
url="http://weblogs.macromedia.com/mchotin/index.xml"; 
useProxy="false"/>
        <mx:Label x="20" y="50" 
text="{feedRequest.result.rss.channel.title}"/>         
        <mx:DataGrid x="20" y="80" id="dgPosts" width="400">
                <mx:columns>
                        <mx:DataGridColumn headerText="Column 1" 
dataField="col1"/>
                        <mx:DataGridColumn headerText="Column 2" 
dataField="col2"/>
                </mx:columns>
        </mx:DataGrid>
        <mx:TextArea x="20" y="245" width="400"/>
        <mx:LinkButton x="20" y="300" label="ReadFullPost"/>
</mx:Application>
Please help me out.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to