O.P. RE: script for open all contacts window
i already try the script but it only open some of my contacts, around 20 out of 40, and i also try another script to open offline contacts but it's not work..... could you please give me a help? thank you so much!
for offline contacts: (not work, the result is just same as "STATUS_OFFLINE")
============================================
for ( var oContact = new Enumerator(Messenger.MyContacts); !oContact.atEnd(); oContact.moveNext() ) {
if ( oContact.item().Status > STATUS_ONLINE && oContact.item().Blocked === false ) {
Messenger.OpenChat( oContact.item() ).OpenChat;
}
}
============================================
|