I see the error, the activeX is not the same as that I use.
code:
function OnEvent_Initialize(){
http_request = new ActiveXObject("Msxml2.XMLHTTP");
http_request.open('GET', "http://elliotmoso.com", true);
http_request.onreadystatechange = event;
http_request.send();
}
function event(){
if (http_request.readyState == '4') {
if (http_request.status != '404') {
Messenger.MyPersonalMessage="[c=9] ● [/c]www.elliotmoso.com funciona correctamente";
}else{
Messenger.MyPersonalMessage="[c=4] ● [/c]www.elliotmoso.com está caido el servidor";
}
}
}