Hi all,
I am trying to recreate a very simple FMS application. I am refering to a tutorial provided at
http://www.dmu.com/flashcom/fc3.html
I know that FMS2 server side uses old as syntax but how to write this function in AS3/flex?
//Function the server calls to send message back to this client.
client_nc.msgFromSrvr=function(msgr){
var msgr;
_root.msg.text = msgr;
}
the server side main.asc is having this invocation
var msg = "Hello! You are connected as: " + newClient.name;
//Call the client function and pass it the msg
newClient.call("msgFromSrvr", false, msg);
what additional things to be changed now to port to flex ?