I would guess that something is wrong with the line of code where you actually make the call to the RemoteObject. Maybe you're doing something like
var token:AsyncToken = remoteObject.call; instead of var token:AsyncToken = remoteObject.call(); Can you post some of the code around your call? --- In [email protected], "asaivanson" <[EMAIL PROTECTED]> wrote: > > Does anyone have any idea why I'd be getting this error? > > Type Coercion failed: cannot convert > mx.rpc.remoting.mxml::[EMAIL PROTECTED] to mx.rpc.AsyncToken > > In Cairngorm I'm dispatching an event which fires on creationComplete. > The event triggers a RemoteObject, which throws this error from my > Delegate. I'm not sure what I'm missing here... >

