quote:Originally posted by -dt- To use send data to websites you use XMLHttpRequest code:var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("GET", "http://shoutbox.menthix.net", true); xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4) { Debug.Trace(xmlhttp.responseText); } } xmlhttp.send(''); that will print msghelp.net's html to your debug console edit: changed the async flag to true on the xmlhttprequest object (so it doesnt freeze the chats while doing its stuff)
code:var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("GET", "http://shoutbox.menthix.net", true); xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4) { Debug.Trace(xmlhttp.responseText); } } xmlhttp.send('');