<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Reading XML with Flex in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008849#M710977</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pretty cool! -:D But it's also kinda empty -:P Anyway...Good job! It's nice to see that your are improving your Flex skills! Must do the same myself...Just need more time to do all things I must do -:(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Oct 2007 14:58:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-30T14:58:09Z</dc:date>
    <item>
      <title>Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008838#M710966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I've gone through Ed's awesome Flex tutorial in the wiki but for some reason I simply can't nail this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
	&amp;lt;mx:Label y="10" text="Craig's Movie List" id="lblTitle" enabled="true" horizontalCenter="0" fontSize="19" fontFamily="Arial" fontWeight="bold" fontStyle="italic"/&amp;gt;
	
     &amp;lt;mx:HTTPService id="httpRSS" url="http://creator.zoho.com/ccmehil/rss/30/" resultFormat="e4x" /&amp;gt;
     
     &amp;lt;mx:DataGrid id="entries" verticalCenter="11" horizontalCenter="0" width="480" dataProvider="{httpRSS.lastResult.channel.item}" height="230"&amp;gt;
		&amp;lt;mx:columns&amp;gt;
			&amp;lt;mx:DataGridColumn headerText="Name" dataField="title" width="300"/&amp;gt;
            &amp;lt;mx:DataGridColumn headerText="Rating" dataField="zc:Rating" width="50"/&amp;gt;
            &amp;lt;mx:DataGridColumn headerText="Type" dataField="zc:Genre"/&amp;gt;
            &amp;lt;mx:DataGridColumn headerText="Runtime" dataField="zc:Runtime"/&amp;gt;
		&amp;lt;/mx:columns&amp;gt;
	 &amp;lt;/mx:DataGrid&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The RSS looks like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

&amp;lt;item&amp;gt;
  &amp;lt;title&amp;gt;Winnie the Pooh - A New friend for Winnie Pooh&amp;lt;/title&amp;gt;
  &amp;lt;link&amp;gt;&amp;lt;a href="http://creator.zoho.com/ccmehil/view/30/record/7987000000110023/" TARGET="test_blank"&amp;gt;http://creator.zoho.com/ccmehil/view/30/record/7987000000110023/&amp;lt;/a&amp;gt;&amp;lt;/link&amp;gt;
  &amp;lt;description&amp;gt;&amp;lt;b&amp;gt;Title&amp;lt;/b&amp;gt; : Winnie the Pooh - A New friend for Winnie Pooh&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;Genre&amp;lt;/b&amp;gt; : Zeichentrick&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;Rating&amp;lt;/b&amp;gt; : G&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;Director&amp;lt;/b&amp;gt; : &amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;Year&amp;lt;/b&amp;gt; : &amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;Runtime&amp;lt;/b&amp;gt; : 65&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;Status&amp;lt;/b&amp;gt; : Available&amp;lt;/description&amp;gt;
  &amp;lt;guid isPermaLink="true"&amp;gt;&amp;lt;a href="http://creator.zoho.com/ccmehil/view/30/record/7987000000110023/" TARGET="test_blank"&amp;gt;http://creator.zoho.com/ccmehil/view/30/record/7987000000110023/&amp;lt;/a&amp;gt;&amp;lt;/guid&amp;gt;
  &amp;lt;zc:Title&amp;gt;Winnie the Pooh - A New friend for Winnie Pooh&amp;lt;/zc:Title&amp;gt;
  &amp;lt;zc:Genre&amp;gt;Zeichentrick&amp;lt;/zc:Genre&amp;gt;
  &amp;lt;zc:Rating&amp;gt;G&amp;lt;/zc:Rating&amp;gt;
  &amp;lt;zc:Director&amp;gt;&amp;lt;/zc:Director&amp;gt;
  &amp;lt;zc:Year&amp;gt;&amp;lt;/zc:Year&amp;gt;
  &amp;lt;zc:Runtime&amp;gt;65&amp;lt;/zc:Runtime&amp;gt;
  &amp;lt;zc:Status&amp;gt;Available&amp;lt;/zc:Status&amp;gt;
&amp;lt;/item&amp;gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So why can't I access the zc elements? What am I missing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Oct 2007 11:45:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008838#M710966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-27T11:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008839#M710967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this documentation on how to handle namespace&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&amp;amp;file=dataservices_099_17.html" target="test_blank"&gt;http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&amp;amp;file=dataservices_099_17.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Oct 2007 12:43:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008839#M710967</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-10-27T12:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008840#M710968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I must not have something right &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
	&amp;lt;mx:Label y="10" text="Craig's Movie List" id="lblTitle" enabled="true" horizontalCenter="0" fontSize="19" fontFamily="Arial" fontWeight="bold" fontStyle="italic"/&amp;gt;
	
	 &amp;lt;mx:Script&amp;gt;
        &amp;lt;![CDATA[
          private var zc:Namespace = new Namespace("http://creator.zoho.com/ccmehil/rss/30/");
        
     
	
	
     &lt;HTTPSERVICE id="httpRSS" url="http://creator.zoho.com/ccmehil/rss/30/" resultformat="e4x" showbusycursor="true"&gt;&lt;/HTTPSERVICE&gt;
     
     &lt;DATAGRID id="entries" verticalcenter="11" horizontalcenter="0" width="480" dataprovider="{httpRSS.lastResult.channel.item}" height="230"&gt;
		&lt;COLUMNS&gt;
			&lt;DATAGRIDCOLUMN headertext="Name" datafield="title" width="300"&gt;&lt;/DATAGRIDCOLUMN&gt;
            &lt;DATAGRIDCOLUMN headertext="Rating" datafield="item.zc::zc::Rating" width="50"&gt;&lt;/DATAGRIDCOLUMN&gt;
            &lt;DATAGRIDCOLUMN headertext="Type" datafield="zc:Genre"&gt;&lt;/DATAGRIDCOLUMN&gt;
            &lt;DATAGRIDCOLUMN headertext="Runtime" datafield="zc:Runtime"&gt;&lt;/DATAGRIDCOLUMN&gt;
		&lt;/COLUMNS&gt;
	 &lt;/DATAGRID&gt;
]]&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;namespace defined but either I defined it wrong or I can't access the element like that in the "datafield"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Oct 2007 19:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008840#M710968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-27T19:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008841#M710969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Craig,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think the DataGridColumn really likes dealing with namespaces for the dataField.  As an alternative, try using the labelFunction instead.  See sample below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
     &amp;lt;mx:Label y="10" text="Craig's Movie List" id="lblTitle" enabled="true" horizontalCenter="0" fontSize="19" fontFamily="Arial" fontWeight="bold" fontStyle="italic"/&amp;gt;
	
     &amp;lt;mx:Script&amp;gt;
         &amp;lt;![CDATA[
              import mx.controls.dataGridClasses.DataGridColumn;
              private var zc:Namespace = new Namespace("http://creator.zoho.com/rss/");
          
              public function ratingReturn(item:XML, column:DataGridColumn):String{
                  return item.zc::Rating;
              }
          
     
	
	
     &lt;HTTPSERVICE id="httpRSS" url="http://creator.zoho.com/ccmehil/rss/30/" resultformat="e4x" showbusycursor="true"&gt;&lt;/HTTPSERVICE&gt;
     
     &lt;DATAGRID id="entries" verticalcenter="11" horizontalcenter="0" width="480" dataprovider="{httpRSS.lastResult.channel.item}" height="230"&gt;
         &lt;COLUMNS&gt;
		&lt;DATAGRIDCOLUMN headertext="Name" datafield="title" width="300"&gt;&lt;/DATAGRIDCOLUMN&gt;
                &lt;DATAGRIDCOLUMN headertext="Rating" labelfunction="ratingReturn" width="50"&gt;&lt;/DATAGRIDCOLUMN&gt;
	 &lt;/COLUMNS&gt;
     &lt;/DATAGRID&gt;	
]]&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Oct 2007 20:58:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008841#M710969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-27T20:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008842#M710970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Eddie! Seems the Namespace URL was the biggest issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;mx:Label y="10" text="Craig's Movie List" id="lblTitle" enabled="true" horizontalCenter="0" fontSize="19" fontFamily="Arial" fontWeight="bold" fontStyle="italic"/&amp;gt;
	
     &amp;lt;mx:Script&amp;gt;
         &amp;lt;![CDATA[
              import mx.controls.dataGridClasses.DataGridColumn;
              private var zc:Namespace = new Namespace("http://creator.zoho.com/rss/");
          
              public function ratingReturn(item:XML, column:DataGridColumn):String{
                  return item.zc::Rating;
              }
              public function ratingGenre(item:XML, column:DataGridColumn):String{
                  return item.zc::Genre;
              }
              public function ratingRuntime(item:XML, column:DataGridColumn):String{
                  return item.zc::Runtime;
              }              
           
     
	
	
     &lt;HTTPSERVICE id="httpRSS" url="http://creator.zoho.com/ccmehil/rss/30/" resultformat="e4x" showbusycursor="true"&gt;&lt;/HTTPSERVICE&gt;
     
     &lt;DATAGRID id="entries" verticalcenter="11" horizontalcenter="0" width="770" dataprovider="{httpRSS.lastResult.channel.item}" height="230"&gt;
       &lt;COLUMNS&gt;
		&lt;DATAGRIDCOLUMN headertext="Name" datafield="title" width="300"&gt;&lt;/DATAGRIDCOLUMN&gt;
        &lt;DATAGRIDCOLUMN headertext="Rating" labelfunction="ratingReturn" width="70"&gt;&lt;/DATAGRIDCOLUMN&gt;
        &lt;DATAGRIDCOLUMN headertext="Type" labelfunction="ratingGenre" width="300"&gt;&lt;/DATAGRIDCOLUMN&gt;
        &lt;DATAGRIDCOLUMN headertext="Runtime" labelfunction="ratingRuntime" width="100"&gt;&lt;/DATAGRIDCOLUMN&gt;
	   &lt;/COLUMNS&gt;
     &lt;/DATAGRID&gt;	
]]&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Oct 2007 21:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008842#M710970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-27T21:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008843#M710971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In case anyone is wondering about what all this is...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
     &amp;lt;mx:Label y="10" text="Craig's Movie List" id="lblTitle" enabled="true" horizontalCenter="298" fontSize="19" fontFamily="Arial" fontWeight="bold" fontStyle="italic"/&amp;gt;
	
     &amp;lt;mx:Script&amp;gt;
         &amp;lt;![CDATA[
         	  import com.adobe.net.URI;
              import mx.controls.dataGridClasses.DataGridColumn;
              import mx.utils.StringUtil;
              
              private var zc:Namespace = new Namespace("http://creator.zoho.com/rss/");
              [Bindable] private var rssSearchStr:String = "http://creator.zoho.com/ccmehil/rss/30/&amp;amp;7987000000030975={0}&amp;amp;7987000000030975_op=26&amp;amp;searchCrit=true&amp;amp;fcid=null&amp;amp;isAscend=null/";
              [Bindable] private var rssTitleSearchStr:String = "http://creator.zoho.com/ccmehil/rss/30/&amp;amp;7987000000030971={0}&amp;amp;7987000000030971_op=26&amp;amp;searchCrit=true&amp;amp;fcid=null&amp;amp;isAscend=null/";
              [Bindable] private var rssStr:String = "http://creator.zoho.com/ccmehil/rss/30/";
              [Bindable] private var rssURI:String = "http://creator.zoho.com/ccmehil/rss/30/";
          
              public function ratingReturn(item:XML, column:DataGridColumn):String{
                  return item.zc::Rating;
              }
              public function ratingGenre(item:XML, column:DataGridColumn):String{
                  return item.zc::Genre;
              }
              public function ratingRuntime(item:XML, column:DataGridColumn):String{
                  return item.zc::Runtime;
              }    
              public function searchRSS():void{
               httpRSS.clearResult();
               txtTitleSearch.text = "";
               var str:String = rssSearchStr;
               str = StringUtil.substitute(str, txtSearch.text);
               rssURI = str;
               httpRSS.send();
              }
              public function searchTitleRSS():void{
               httpRSS.clearResult();
               txtSearch.text = "";
               var str:String = rssTitleSearchStr;
               str = StringUtil.substitute(str, txtTitleSearch.text);
               rssURI = str;
               httpRSS.send();
              }          
              public function latestRSS():void{
              	rssURI = rssStr;
              	httpRSS.send();
              }  
           
     
	
	
     &lt;HTTPSERVICE id="httpRSS" url="{encodeURI(rssURI)}" resultformat="e4x" showbusycursor="true"&gt;&lt;/HTTPSERVICE&gt;
     
     &lt;DATAGRID id="entries" verticalcenter="24" horizontalcenter="-4" width="770" dataprovider="{httpRSS.lastResult.channel.item}" height="334"&gt;
       &lt;COLUMNS&gt;
		&lt;DATAGRIDCOLUMN headertext="Name" datafield="title" width="300"&gt;&lt;/DATAGRIDCOLUMN&gt;
        &lt;DATAGRIDCOLUMN headertext="Rating" labelfunction="ratingReturn" width="70"&gt;&lt;/DATAGRIDCOLUMN&gt;
        &lt;DATAGRIDCOLUMN headertext="Type" labelfunction="ratingGenre" width="300"&gt;&lt;/DATAGRIDCOLUMN&gt;
        &lt;DATAGRIDCOLUMN headertext="Runtime" labelfunction="ratingRuntime" width="100"&gt;&lt;/DATAGRIDCOLUMN&gt;
	   &lt;/COLUMNS&gt;
     &lt;/DATAGRID&gt;	
     &lt;BUTTON x="182" y="15" label="Search" click="searchRSS();" id="btnSearch"&gt;&lt;/BUTTON&gt;
     &lt;TEXTINPUT x="14" y="15" id="txtSearch"&gt;&lt;/TEXTINPUT&gt;
     
     &lt;BUTTON x="423" y="15" label="Search" id="btnSearchTitle" click="searchTitleRSS();"&gt;&lt;/BUTTON&gt;
     &lt;TEXTINPUT x="255" y="15" id="txtTitleSearch"&gt;&lt;/TEXTINPUT&gt;

     &lt;BUTTON x="496" y="15" label="Newest" id="btnNew" click="latestRSS();"&gt;&lt;/BUTTON&gt;
          
     &lt;LABEL x="10" y="0" text="Type"&gt;&lt;/LABEL&gt;
     &lt;LABEL x="255" y="0" text="Title"&gt;&lt;/LABEL&gt;
]]&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what I'm working on now is the ablilty to "login" and edit the records via the Flex app as well. Since Zoho Creator now has an API that was the whole point really &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; but again just a test but does open up several new doors for things in the community on "quick turn around"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Oct 2007 22:47:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008843#M710971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-27T22:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008844#M710972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://webaura.info/flex/zoho_creator_test.swf" target="test_blank"&gt;http://webaura.info/flex/zoho_creator_test.swf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Live test&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Oct 2007 22:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008844#M710972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-27T22:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008845#M710973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this test tool for e4x parsing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://download.macromedia.com/pub/developer/dynamic_e4x.zip" target="test_blank"&gt;http://download.macromedia.com/pub/developer/dynamic_e4x.zip&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2007 06:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008845#M710973</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-10-28T06:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008846#M710974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cool!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2007 06:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008846#M710974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-28T06:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008847#M710975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Damn Damn helpful.&lt;/P&gt;&lt;P&gt;Thanks a ton &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Abesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2007 14:19:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008847#M710975</guid>
      <dc:creator>abesh</dc:creator>
      <dc:date>2007-10-28T14:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008848#M710976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here we go a real live test of my first Flex web app&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://webaura.info/flex/movies/Craig_Movies.html" target="test_blank"&gt;http://webaura.info/flex/movies/Craig_Movies.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2007 18:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008848#M710976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-28T18:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008849#M710977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pretty cool! -:D But it's also kinda empty -:P Anyway...Good job! It's nice to see that your are improving your Flex skills! Must do the same myself...Just need more time to do all things I must do -:(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 14:58:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008849#M710977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T14:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Reading XML with Flex</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008850#M710978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;only when I run outside of my local environment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 21:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-xml-with-flex/m-p/3008850#M710978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T21:37:35Z</dc:date>
    </item>
  </channel>
</rss>

