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

24 June 2008 ~ 0 Comments

event.dispatch();

In the earlier versions of Cairngorm you need to dispatch events through the CairngormEventDispatcher instance. Now self dispatching events are added in Cairngorm2.2.
Old method
var evt:NavigateEvent = new NavigateEvent();
// Dispatch through the dispatcher
CairngormEventDispatcher.getInstance().dispatchEvent(evt);
New method
var evt:NavigateEvent = new NavigateEvent();
// Event dispatch itself
evt.dispatch();
These are the changes between Cairngorm 2.2 and Cairngorm 2.1(from adobe labs)

Removed dependency on Flex [...]

Continue Reading

Tags: , ,