Hi bleezer !
I'm not sure of that, but I think that you can't set your status on "Idle" with Messenger.MyStatus... I've tried your script with other status, and it goes...
Example :
code:
Messenger.MyStatus = "6";
function OnEvent_MyStatusChange(NewStatus) {
if (NewStatus==6) {
MsgPlus.DisplayToast("Status","IDLE");
}
}
With this code, there is no notification.
code:
Messenger.MyStatus = "5";
function OnEvent_MyStatusChange(NewStatus) {
if (NewStatus==5) {
MsgPlus.DisplayToast("Status","BE RIGHT BACK");
}
}
With this one, there is the notification.
(Sorry for my English, I'm French
)