Hey,
Im trying to get something to work here
code:
var e = new Enumerator(Messenger.MyContacts);
for(; !e.atEnd(); e.moveNext())
{
var Contact = e.item();
Contact.Blocked = "True";
}
Thats my code, it just iterates through all the messenger contacts. Now what i want is, when it gets to a contact the the user is currently talking to (has the contacts window open) it will not block them ie. if window.open = true etc
Does anybody know the code for this?
Thanks