O.P. Question about scripting
Hi,
I'm just starting to look at scripts and trying to understand them. Now I have question:
I have a list of contacts (d_emails) and I want to check the status of these contacts during sign in...
function OnEvent_Signin(Email) {
d_emails = l_emails.split(",");
for (var i in d_emails) {
Debug.Trace("Status van " + d_emails[i] + " : " + Messenger.MyContacts.GetContact(d_emails[i]).Status);
}
}
Now the debugger shows an error saying it needs an Object.
I can't find out what's wrong. Can you please help?
Regards,
T-PO
|