Archive | 2008

28 December 2008 ~ 1 Comment

I am a fulltime flex freelancer

Last week I started my new career as a fulltime freelance flex developer and designer. If anyone looking for a flex developer/designer I’m ready to work. My email id is jerry[at]jerrydon[dot]com.
My technical knowledge:
Flex, AIR, Actionscript 3.0, Cairngorm, Remoting, Livecycle DS, Blaze DS, Skinning, Custom component development, Flash, Silverlight, UI design, Usability, Web 2.0, SOA, Webservice, [...]

Continue Reading

19 November 2008 ~ 1 Comment

VO to XML converter

The following code converts a value object to an XML
private function convertToXML():void
{
var product:ProductVO = new ProductVO();
product.id = 12;
product.name = ‘test product’;
product.description = ‘test desc’;
product.price = 100;
product.thumbnail = ‘image1.jpg’;
var xmlProduct:XML = voToXml(product, ‘product’);
}
private static function voToXml(vo:Object, qName:String):XML
{
var qn:QName = new QName(qName);
var xmlDocument:XMLDocument = new XMLDocument();
var simpleXMLEncoder:SimpleXMLEncoder = new SimpleXMLEncoder(xmlDocument);
var xmlNode:XMLNode = simpleXMLEncoder.encodeValue(vo, qn, xmlDocument);
var xml:XML = [...]

Continue Reading

Tags: , , ,

31 October 2008 ~ 4 Comments

Vista Remix flex theme - My scalenine contest entry

My scalenine contest entry Vista Remix theme is listed on the scalenine gallery. Congrats to the winners of the contest. Brownie rocks!!. Many thanks to Juan Sanchez, Adobe and EffectiveUI
Download
UPDATE : You can download the flash source file from this link

Continue Reading

Tags: , , , ,

15 October 2008 ~ 0 Comments

Flash Player 10 Top Features

Â
This is a copy paste from adobe flashplayer features page
Â
3D effects New
Create more intuitive, engaging interfaces using built-in support for 3D effects. Get started quickly without being a 3D master by designing in 2D and easily transforming and animating in 3D. Fast, extremely lightweight, and simple-to-use APIs, along with 3D tools in Adobe® Flash® CS4 [...]

Continue Reading

Tags: