quote:
Originally posted by foaly
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...
The only reason you would want it to go into lock is for it to not be able to be seen, otherwise you are better off just not having autosign-in and your password not being saved.