i’m using a php socket server (which is working fine, i tested it already) to make a flash chat. I have gotten my script to recieve stuff from the server, but it can’t seem to send it…i’m using
socket = new XMLSocket();
socket.connect("myserver",port);
socket.send("blah");
I have set up a function to recieve what the server sends…and it just sends back whatever i send it…but when i send my message my flash movie recieve my message back.
Does anyone know if there are any loopholes to the XMLSocket.send, or if i’m doing something wrong?