What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Remove Notifications when changing PSM

Remove Notifications when changing PSM
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Remove Notifications when changing PSM
The ChatWnd::ResetInfoMessage could potentially work. I did think of this however there is a limitation. The limitation is that everyone you chat with needs to have your script to prevent the text from being displayed.

Also you would need to do something like this:

js code:
function OnEvent_ContactPsmChange ( sEmail , sPsm ) {
    for ( var oChatWnd = new Enumerator ( Messenger.CurrentChats ); !oChatWnd.atEnd(); oChatWnd.moveNext() ) {
        if ( oChatWnd.item().Contacts.GetContact ( sEmail ) !== null ) {
            oChatWnd.item().ResetInfoMessage();
        }
    }
}
That would reset the info message for every chat window that the contact is in (in case of group chats).

This post was edited on 10-08-2009 at 08:17 PM by matty.
10-08-2009 08:13 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Remove Notifications when changing PSM - by Johnny09 on 10-08-2009 at 03:19 PM
RE: Remove Notifications when changing PSM - by m0nst3rkill3r on 10-08-2009 at 03:22 PM
RE: Remove Notifications when changing PSM - by Johnny09 on 10-08-2009 at 03:28 PM
RE: Remove Notifications when changing PSM - by matty on 10-08-2009 at 03:34 PM
RE: Remove Notifications when changing PSM - by Johnny09 on 10-08-2009 at 03:48 PM
RE: Remove Notifications when changing PSM - by matty on 10-08-2009 at 04:56 PM
RE: Remove Notifications when changing PSM - by Johnny09 on 10-08-2009 at 05:03 PM
RE: Remove Notifications when changing PSM - by matty on 10-08-2009 at 05:48 PM
RE: Remove Notifications when changing PSM - by Johnny09 on 10-08-2009 at 07:17 PM
RE: Remove Notifications when changing PSM - by Spunky on 10-08-2009 at 08:02 PM
RE: Remove Notifications when changing PSM - by matty on 10-08-2009 at 08:13 PM
RE: Remove Notifications when changing PSM - by Spongshga on 11-28-2009 at 01:16 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