News by Amr Mohamed Kamel

A Web browser using Adobe AIR

9 Mar 23:32
This is my first Adobe AIR application, I was experimenting the HTML component .. Source code: <?xml version=”1.0″ encoding=”utf-8″?> <mx:WindowedApplication xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”vertical” title=”My AIR Browser”> <mx:Script> <![CDATA[ private function onClick(event:Event):void { if(event.currentTarget == urlButton){ myHTML.location = urlTextInput.text; } else if(event.

Flex and AIR skins

27 Feb 19:02
I have found this gem. It contains many skins for Adobe Flex and AIR applications.

Flex RSS reader in less than 20 lines of code!!

16 Feb 17:24
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.

Flexing with PHP

12 Feb 21:28
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 [...