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: , , ,

10 July 2008 ~ 0 Comments

Fullscreen Flex Preloader

This is a flex custom preloader made by extending the DownloadProgressBar class in the flex framework. The progress bar is a fullscreen sprite with a customizable color. You can also change the position and styles of the percentage textfield. See the below code to customize the preloader.
// Progress bar color
protected var barColor:uint = 0xE8D385;
/**
* [...]

Continue Reading

16 June 2008 ~ 0 Comments

Multiplayer flash game API

Nonoba provides a game API to develop multiplayer flash games. The client side API is in actionscript 3 and server side in c#. They provide hosting enviornment, game servers, communication channel etc. Each game will automatically get a lobby and chat.
Link here

Adobe acrobat 9 supports flash content in PDF files. Check it.

Continue Reading