In 2008, over one thousand people experienced the world’s first virtual web conference. Together, we created a new type of conference that is environmentally-friendly, affordable, and interactive.

In 2009, we are going to take it one step further.


Redispatching a ResultEvent with the AS3 Lightweight Remoting Framework

If you want to redispatch a ResultEvent when using Danny Patterson's AS3 Lightweight Remoting Framework, you have to modify the ResultEvent class to override the clone() method. So, if you want to do something like this: private function resultHandler(event:ResultEvent):void { dispatchEvent(event); } Just add the following method to com.dannypatterson.remoting.ResultEvent: public override function clone():Event { return new [...]