Thx Dead for reply
If i use "MsgPlusDisplayToastContact" the toast don't appear...
I don't understand why.
For example, if i use the script that we find in the msgplusscript documentation :
code:
function OnEvent_Signin(Email)
{
if(Email == "your@email.com") //Change for your sign-in email
{
var Message = "Hello Master " + Messenger.MyName + "!";
Message = MsgPlus.RemoveFormatCodes(Message);
MsgPlus.DisplayToastContact("", Message);
}
}
and if i change the line o displaytoast... for displaytoastcontact...it doesn't work.