I am using the "RemoteObject" to call the Coldfusion file and I set the 
fault to call the event handler but still errors...

<mx:RemoteObject ...fault="handleFault(event)" />

the function that handle it is something like this:

import mx.rpc.events.FaultEvent;          
public function handleFault(event:FaultEvent):void {
        mx.controls.Alert.show(event.message.toString());
                       
}

Any ideas?



Reply via email to