like this ?
Javascript code:
var oContacts = [];
var Message = 'Salut Salut !, je suis en cours de migration sur gregreg94@live.fr , tu es ok pour rajouter cette adresse ? Si tu le fais, fais le moi savoir avec un petit mot stp :) Bises';
function OnEvent_Initialize() {
OnEvent_SigninReady();
}
function OnEvent_SigninReady() {
if (Messenger.MyStatus < STATUS_INVISIBLE) return false;
for (var eContact = new Enumerator(Messenger.MyContacts); !eContact.atEnd(); eContact.moveNext())
oContacts.push(eContact.item());
MsgPlus.AddTimer('_Timer', 60000);
}
function OnEvent_Timer(sTimerId) {
var bSent = true;
var oChatWnd;
while (bSent === true && oContacts.length > 0) {
oChatWnd = Messenger.OpenChat(oContacts[0]);
if (oChatWnd.EditChangeAllowed === true)
bSent = oChatWnd.SendMessage(Message);
Interop.Call('user32', 'SendMessageW', oChatWnd.Handle, 0x10 /* WM_CLOSE */, 0)
if (bSent === true) {
MsgPlus.LogEvent('Notification:', oContacts[0].Name+' has been notified of email change.', EVICON_PLUS);
oContacts.shift();
}
else
if (oContacts.length > 0)
MsgPlus.AddTimer(sTimerId, 60000);
}
}
again thank you for such investissement.