What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [request] relative easy script request

[request] relative easy script request
Author: Message:
wmnone
New Member
*


Posts: 1
Joined: Apr 2008
O.P. Huh?  [request] relative easy script request
Hello,
I would like to know how to write a script to perform this specific action:
In the event that one person (user@email.com) changes its status from offline to whatever that the script pulls a webpage (http://www.website.com/notify.php), preferably without opening a browser. Is this possible and so yes could anybody be so kind of showing me how? It would be greatly appreciated.
Yours,
wmnone
04-23-2008 03:40 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [request] relative easy script request
code:
function OnEvent_ContactSignin( sEmail ) {
    if ( sEmail === 'user@email.com' ) {
        var xml = new ActiveXObject( 'Microsoft.XMLDOM' );
        xml.async = true;
        xml.load( 'http://www.website.com/notify.php' );
        xml = null;
    }
}

This post was edited on 04-23-2008 at 05:17 PM by matty.
04-23-2008 04:22 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »


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