What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Fetch Webpage without Freezing WLM [SOLVED]

Fetch Webpage without Freezing WLM [SOLVED]
Author: Message:
mynetx
Skinning Contest Winner
*****

Avatar
Microsoft insider

Posts: 1175
Reputation: 33
37 / Male / Flag
Joined: Jul 2007
RE: Fetch Webpage without Freezing WLM
jscript code:
var objAjax = new ActiveXObject("Microsoft.XMLHTTP");
var strUrl = "http://sonicsam.net/xboxXXX.php?" + new Date().getTime();
>>>objAjax.open("GET", strUrl, true); // async<<<
objAjax.onreadystatechange = function() {
    if(objAjax.readystate != 4)
        return;
    var intStatus = 12027;
    try {
        intStatus = objAjax.status;
    }
    catch(e) { }
    if(intStatus != 200) {
        Debug.Trace("Web connection error " + intStatus);
        return;
    }
    Debug.Trace(objAjax.responseText);
};
objAjax.send();
mynetx - Microsoft, enhanced.

You have a problem or issue with Windows, Internet
Explorer or Office?
Send a tweet!
07-02-2009 08:21 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Fetch Webpage without Freezing WLM [SOLVED] - by prashker on 07-02-2009 at 07:55 PM
RE: Fetch Webpage without Freezing WLM - by Mnjul on 07-02-2009 at 08:00 PM
RE: Fetch Webpage without Freezing WLM - by prashker on 07-02-2009 at 08:14 PM
RE: Fetch Webpage without Freezing WLM - by matty on 07-02-2009 at 08:19 PM
RE: Fetch Webpage without Freezing WLM - by Mnjul on 07-02-2009 at 08:20 PM
RE: Fetch Webpage without Freezing WLM - by mynetx on 07-02-2009 at 08:21 PM
RE: Fetch Webpage without Freezing WLM - by prashker on 07-02-2009 at 08:47 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On