| foaly Senior Member
 
     
 
  
 Posts: 718
 Reputation: 20
 39 /
  /  Joined: Jul 2006
 
 | | RE: Problem with ChatWndSendMessage event (i guess) code:if (Message == '#check') {
 var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
 xmlhttp.open("GET", "http://flippeh.de/minichat_last.php", true);
 xmlhttp.onreadystatechange=function() {
 if (xmlhttp.readyState==4) {
 Debug.Trace("Hi from success!");
 Message = "";
 //return xmlhttp.responseText;
 }
 }
 xmlhttp.send('');
 
 return Message;
 
 }
 return false;
 }
 
 
 
should work | 
 |