Problem with shareobject.send()
I have a problem with shareobject. the Send method does not work. I work with AS3
My code
Server :
application.onAppStart = function()
{
this.text_so = SharedObject.get("text_so", false);
}
application.onConnect = function(client)
this.acceptConnection(client);
this.text_so.send("MandarMensaje","OK");
}
Client:
.........
.......
text_so=SharedObject.getRemote("text_so",nc.uri,false);
text_so.connect(nc);
text_so.client=this;
text_so.MandarMensaje = function() {
trace('');
};
.......
......
This code have a error , I need an example of function definition is executed from the server.
