Can I use a variabele for the 'source' property with RemoteObject? The code below doesn't seem to work :(
function initApp() {
path = "vcs/Applications/Test";
}
<mx:RemoteObject id="applicationService" source="{path}"
endpoint="http://localhost/amf.php" showBusyCursor="true">
<mx:method name="setObjectInfo" result="createdChild(event.result)"/>
</mx:RemoteObject>

