re: [flexcoders] AS3 RemoteObjects and Operations

2009-01-02 Thread Wally Kolcz
Wait..CFCs have methods, not operations So do I remove the Operation variables and just create a function like: public function create(petData:Object):void { ro.create(petData); ro.create.addEventListener(FaultEvent.FAULT, faultHandler);

Re: [flexcoders] AS3 RemoteObjects and Operations

2009-01-02 Thread Simon Bailey
Hi Wally, For some examples of hooking up coldfusion to flex check the below links. They are using PureMVC but if your simply view source and check out the proxy and delegate classes you will see the simple calls to cf and handling of the returned data. Sure there is room for