What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Help » Multiple Accounts

Multiple Accounts
Author: Message:
Squelettor
Junior Member
**

Avatar

Posts: 49
Joined: Jul 2006
RE: Multiple Accounts
What you can do :

In all your script :

on the top :
code:
var email_authorized = new Array("example@truc.fr");
var authorized;


in the OnEvent_Signin (creat it if don't exist)

code:
function OnEvent_Signin(Email)
{
      authorized = false;
      for (var i =0; i<email_authorized.length;i++)
      {
            if (email_authorized[i] ==Messenger.MyEmail)
            {
                   authorized = true:
                   break;
            }
            return;
      }

       //real code of the OnEvent_Signin...
}


and in all the function OnEvent, on the top :

code:
function OnEvent_XXXXXX(....)
{
             if (!authorized)
            {
                   return;
            }

           //real code of the OnEvent_XXXX...
}


If you have a lot of script, It can be long but you just have make this juste 1 on time ^^


Squelettor
07-26-2006 01:42 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Multiple Accounts - by bigbob85 on 07-23-2006 at 02:10 AM
RE: Multiple Accounts - by John Anderton on 07-25-2006 at 06:55 PM
RE: Multiple Accounts - by Sunshine on 07-25-2006 at 07:14 PM
RE: Multiple Accounts - by John Anderton on 07-25-2006 at 07:24 PM
RE: Multiple Accounts - by bigbob85 on 07-26-2006 at 12:38 AM
RE: Multiple Accounts - by Squelettor on 07-26-2006 at 01:42 AM
RE: Multiple Accounts - by qgroessl on 07-26-2006 at 02:23 AM
RE: Multiple Accounts - by bigbob85 on 07-26-2006 at 02:28 AM
RE: RE: Multiple Accounts - by Squelettor on 07-26-2006 at 02:31 AM
RE: Multiple Accounts - by bigbob85 on 07-26-2006 at 03:36 AM
RE: RE: Multiple Accounts - by Squelettor on 07-26-2006 at 10:25 AM


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