Thanks Matty, I tried that code but nothing happened...
it just signed in normally with no messages or scripts appearing..
EDIT: And yes I did insert the correct email
The error that comes up is this:
"Error: Object doesn't support this property or method (code: -2146827850)
File: StatusCheck.js. Line: 4."
Heres my code:
jscript code:
var oStatus = {0 : 'Unknown', 1 : 'Offline', 3 : 'Online', 4 : 'Busy', 5 : 'Be right back', 6 : 'Idle', 7 : 'Away', 8 : 'In a call', 9 : 'Out to lunch'};
function OnEvent_SigninReady(sEmail) {
MsgPlus.DisplayToast('email@email.co.uk', oStatus[Messenger.GetContact('email@email.co.uk').Status]);
}
Line 4 is: "MsgPlus.DisplayToast('email@email.co.uk', oStatus[Messenger.GetContact('email@email.co.uk').Status]);"