Posts Tagged ‘adobe flex’

I have found this gem. It contains many skins for Adobe Flex and AIR applications.
ENJOY

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″ [...]

Flexing with PHP

I have developed this example to understand how the data services and data providers work in Adobe Flex, and after I finished it I thought this would be a good mini-tutorial.

I used PHP as the server side scripting language, but the same can be applied to any other language e.g. JSP/Serlvets, ASP, …etc.
First You [...]