For a simple Hello, World! application in ActionScript 2.0, you could use the code below:
var xmlSocket:XMLSocket=new XMLSocket();
xmlSocket.onConnect=function() {
xmlSocket.send(new XML("Hello, World! "));
}
xmlSocket.onXML=function(myXML) {
trace(myXML.firstChild.childNodes[0].firstChild.nodeValue);
xmlSocket.close();
}
xmlSocket.connect("localhost",8463);
This would result in the output window of the Flash IDE opening and displaying "Hello, World!", assuming that a socket server was running on port 8463 of the local machine, and was echoing everything sent to it.