08 April 2010 ~ 0 Comments

Adobe Launch Event at Cochin

Toobler and a couple of its employees have been active promoters of Gods Own Developers, the Kerala Adobe User group since its inception. The group has until now organized many meetings and successfully brought together more than a few developers and designers who share a passion for technology. I have always been proud of my position [...]

Continue Reading

15 January 2010 ~ 2 Comments

From flex freelancer to entrepreneur

There are happy endings and there are sad endings… but the best ending is one that is the starting of something even better. That, I hope is what my transition from a full time freelance developer to entrepreneur is all about.
Just over a year ago, I posted on this blog that I was becoming a [...]

Continue Reading

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