Shoutbox

I have a question about the new msn 2011? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Skype & Live Messenger (/forumdisplay.php?fid=10)
+----- Thread: I have a question about the new msn 2011? (/showthread.php?tid=96412)

I have a question about the new msn 2011? by digitalis on 01-21-2011 at 03:47 PM

OK my question is that. I have the new msn 2011 and um..I want to know how can i view the block list of all the people i block because i want to unblock somebody but the new msn 2011 do not have the block option. is there a way to view all the people i block ?


RE: I have a question about the new msn 2011? by matty on 01-21-2011 at 04:43 PM

If you install Messenger Plus! 4.9 you can create a script and insert this code

Javascript code:
function OnEvent_Initialize() {
    if (Messenger.MyStatus < STATUS_INVISIBLE) return false;
    for (var oContact = new Enumerator(Messenger.MyContacts); !oContact.atEnd(); oContact.moveNext())
        if (oContact.item().Blocked === true)
            Debut.Trace(oContact.item().Email);
 
    Debug.DebuggingWindowVisible = true;
}
 
function OnEvent_SigninReady() {
    OnEvent_Initialize()
}