I'm running Flex 3 with Cairngorm 2.2.1. I get the following warnings in the debug console after refactoring my code to use Cairngorm (used Cairngen):
warning: unable to bind to property 'xxx' on class 'Object' (class is not an IEventDispatcher) Unfortunately, this problem is causing some trouble. While I can retrieve my data via Cairngorm MVC + Zend AMF, any add record or update record does not work, although no errors are thrown and things appear to complete. After setting breakpoints, I notice that the "add record" goes through the controller, to the add command, to the add delegate and it does execute my remote object service call ... __service.addContact_PHP(contact) ... however, the "result" handler in the command file is never called which indicates that the data was never sent or the wrong data was sent to PHP. I have tried the fix outlined here: http://livedocs.adobe.com/flex/2/langref/flash/events/IEventDispatcher.html But that did not help. Any help would be greatly appreciated!

