Re: [flexcoders] Is there any way to use customized RemoteObject in mxml with mx:method?

2008-02-08 Thread Tom Chiverton
On Thursday 07 Feb 2008, den.orlov wrote: cust:MyRemoteObject id=ro destination=dest mx:method name=getAll result=onGetAllResult(event)/ /cust:MyRemoteObject Shouldn't that be cust:method ? -- Tom Chiverton Helping to enormously reintermediate robust synergies on:

[flexcoders] Is there any way to use customized RemoteObject in mxml with mx:method?

2008-02-07 Thread den.orlov
I wrote RemoteObject's sublcass that contains functionality common for all my appp's RemoteObjects: public dynamic class MyRemoteObject extends RemoteObject { public function MyRemoteObject() { super(); this.showBusyCursor = true; this.requestTimeout=10;

Re: [flexcoders] Is there any way to use customized RemoteObject in mxml with mx:method?

2008-02-07 Thread Frederico Garcia
Which RemoteObject are you extending? mx.rpc.remoting.RemoteObject or mx.rpc.remoting.mxml.RemoteObject? Try extending the latter. Regards, Frederico Garcia den.orlov escreveu: I wrote RemoteObject's sublcass that contains functionality common for all my appp's RemoteObjects: public

Re: [flexcoders] Is there any way to use customized RemoteObject in mxml with mx:method?

2008-02-07 Thread Fidel Viegas
Sorry, I didn't read it properly. I thought you were using WebService.

Re: [flexcoders] Is there any way to use customized RemoteObject in mxml with mx:method?

2008-02-07 Thread Fidel Viegas
On Feb 7, 2008 5:38 PM, den.orlov [EMAIL PROTECTED] wrote: I wrote RemoteObject's sublcass that contains functionality common for all my appp's RemoteObjects: public dynamic class MyRemoteObject extends RemoteObject { public function MyRemoteObject() { super(); this.showBusyCursor