I just need help for this script:
quote:
function OnEvent_Initialize(MessengerStart)
{
var Contacts = Messenger.MyContacts;
var e = new Enumerator(Contacts);
for(; !e.atEnd(); e.moveNext())
{
var Contact = e.item();
if(Contact.blocked == true)
Debug.Trace(" " + Contact.Email);
}
}
For now, the script display in the debug window, the email of everyone in my contact list who was blocked.
I want to delete this blocked contacts too... but i dont find the function, any idea'??