Just in case your doing something already done here
http://www.nutrixinteractive.com/blog/?p=124
On 4 Jul 2008, at 17:20, mbhoisie wrote:
I'd like to have a custom remoteobject for specific error handling
and logging. However, if I try to extend remoteobject:
public dynamic class CustomRemoteObject extends RemoteObject
{
...
}
It is completely unusable in an mxml file. If I try to declare any
<mx:methods> inside of it, I get a "could not resolve <mx:method> to
a component implemenation":
<components:CustomRemoteObject>
<mx:method ...> <!-- compiler error>
</components:CustomRemoteObject>
I know that <mx:method> is special-cased by the compiler because it
doesn't have a component implementation. Is there a way to use custom
remote objects in mxml with the mx:method tag? If not, is there a way
to use custom remote objects in mxml and have callbacks at the method-
level? Is remoteobject not supposed to be extended this way?