quote:
Originally posted by SpunkyLoveMuff
code:
function OnEvent_ContactSignout(Email){
var Contacts = Messenger.MyContacts;
var e = new Enumerator(Contacts);
for(; !e.atEnd(); e.moveNext()) {
var Contact = e.item();
if(Contact.Email===Email){
MsgPlus.DisplayToastContact("Contact Signed Out", MsgPlus.RemoveFormatCodes(Contact.Name), "signed out");
}
}
}
How is that script function going to add a display picture to the toast as requested by Shiny Rabbit? It's not showing any display pictures in the toasts for me.