Posts Tagged ‘xml’
Yup, this my second Adobe AIR application and YES it is another RSS Reader but this time I was studying how to manipulate XML data in ActionScript 3.0 using E4X syntax “really cool BTW”. Of course the source code is huge if you compared it to the Flex version of the same application [...]
Yes, I have become a Flexaholic . This is a simple RSS reader, I developed it using Adobe Flex.. The whole application contains only 19 lines of code .
Code:
<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute”>
<mx:StringValidator id=”urlValidator” source=”{myTextInput}” property=”text”/>
<mx:HTTPService id=”myRSSFeed” url=”{myTextInput.text}” />
<mx:Label x=”10″ y=”12″ text=”RSS URL:” fontWeight=”bold”/>
<mx:TextInput id=”myTextInput” width=”357″ x=”68″ y=”10″/>
<mx:Button x=”371″ y=”40″ [...]
