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:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Fetch Webpage without Freezing WLM
js code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open('GET', 'http://sonicsam.net/xboxXXX.php?'+date.getTime(), true);

    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4) {
            Debug.Trace(xmlhttp.responseText);
        }
    }
   
    xmlhttp.send('');
07-02-2009 08:19 PM
Profile E-Mail PM 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