I'm new to AutoPlay and have done the following in Flash but will need to do the same in AutoPlay.
Send XML schema in memory to a certain IP and port number. This would be the request.
Then AutoPlay should be waiting for the response in XML as well. Then I could parse it and do what I need with it.
Here is how I did it in Flash Actionscript:
Is there an equivalent in this application?Code:var respFromServer = new XML(); respFromServer.onLoad = respParser; reqToServerXML.sendAndLoad("http://127.0.0.1:8321", respFromServer);


