quote:
Originally posted by CookieRevised
code:
function OnEvent_Signin(sEmail) {
if (sEmail === 'mymail@mail.com') MsgPlus.LockMessenger(true);
}
why not remove the lock at the same time...
code:
function OnEvent_Signin(sEmail) {
if (sEmail === 'mymail@mail.com') {
MsgPlus.LockMessenger(true);
MsgPlus.LockMessenger(false);
}
}
that would prompt you the password window...