What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! General » Locking Personal Message

Locking Personal Message
Author: Message:
Shaggie
Junior Member
**

Avatar

Posts: 87
– / Male / Flag
Joined: Apr 2002
O.P. RE: Locking Personal Message
I am less worried about my desktop background as others on MSN will not see it, besides even though they act childish sometimes, they still have to behave somewhat professionally.  The problem with locking my computer is that I get pulled away from it to assist others so often that I forget to do it & it can be a pain to have to unlock it all the time.

It does make sense what you said because they could change other things like my avatar, however it is less likely since most things that can be seen by those who I chat what are also easily visible by me in a messenger window.


I did some research into this and found out how to write a script for this.  I thought it would be more difficult than this.  C'est la vie.
I used the timer to prevent the person who changes it from noticing the change easily.  It Follows:

function OnEvent_MyPsmChange(NewPsm)
{
    if(NewPsm != "My Personal Message")
    {
        MsgPlus.AddTimer("ResetPersonalInfo", 10000);
    }
}

function OnEvent_MyNameChange(NewName)
{
    if(NewName != "My Name")
    {
        MsgPlus.AddTimer("ResetPersonalInfo", 10000);
    }
}

function OnEvent_Timer(TimerId)
{
    if(TimerId == "ResetPersonalInfo")
    {
        Messenger.MyPersonalMessage = "My Personal Message";
        Messenger.MyName = "My Name";
    }
}
06-28-2007 03:45 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Locking Personal Message - by Shaggie on 06-26-2007 at 10:14 PM
RE: Locking Personal Message - by Jarrod on 06-26-2007 at 10:19 PM
RE: Locking Personal Message - by lizard.boy on 06-26-2007 at 10:49 PM
RE: Locking Personal Message - by Shaggie on 06-26-2007 at 11:34 PM
RE: Locking Personal Message - by NiteMare on 06-27-2007 at 01:00 AM
RE: Locking Personal Message - by CookieRevised on 06-27-2007 at 11:35 PM
RE: Locking Personal Message - by lizard.boy on 06-27-2007 at 11:55 PM
RE: Locking Personal Message - by NiteMare on 06-28-2007 at 03:13 AM
RE: Locking Personal Message - by Shaggie on 06-28-2007 at 03:45 PM
RE: Locking Personal Message - by CookieRevised on 07-03-2007 at 06:35 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