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";
}
}
|