What’s the ActionScript equivalent of this MXML?
<mx:RemoteObject id="Server" destination="Server" source="gb.informaticasystems.Server" fault="handler_backendCommunicationFails(event)" >
<mx:method name="executeQuery" result="handler_fetchDataRequestSuccess(event)"/>
</mx:RemoteObject>
TIA!
You just need to call:
After it executes, you handle the result in your handler, which you specified as:
EDIT: Let me translate the MXML: