I have a remote object that is very dynamic.The user is actually selecting the source of the component and the method name. So how can I refer to the remote objects methods dynamically?
ro[methodname].addEventListenter() ???
var ro:RemoteObject = new RemoteObject();
ro.destination = "ColdFusion";
ro.source = something.text
ro.METHODNAME.addEventListener("result", getListResultHandler);
ro.addEventListener("fault", faultHandler);
ro..METHODNAME(deptComboBox.selectedItem.data);
Thank You
Dan Vega

