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

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