Shoutbox

Lock MSN on Close or Minimize MSN - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Lock MSN on Close or Minimize MSN (/showthread.php?tid=97379)

Lock MSN on Close or Minimize MSN by Janaboy on 04-14-2011 at 09:27 PM

Hi!

Please help me create such plugin for msgplus live, that when i click on close ( X ) or minimize (_) on messenger window it lock it..

I try to find the answer, but nothing!

Thanks!
Janaboy


RE: Lock MSN on Close or Minimize MSN by CookieRevised on 04-14-2011 at 10:21 PM

Unfortunalty locking Messenger when you minimize the contactlist can't be done with only pure scripting because that requires subclassing (If you can create an external DLL which subclasses the main Messenger window then it is possible).

However, locking Messenger when you close the contactlist window is possible.

But, is there a specific reason why you don't you use the Messenger Lock shortcut or menu item for this? It has the same effect though...

As for the code to lock Messenger when you close the contactlist, all you need is:

Javascript code:
function OnEvent_ContactListWndDestroyed() {
    if (!MsgPlus.MessengerIsLocked) MsgPlus.LockMessenger(true);
}


RE: RE: Lock MSN on Close or Minimize MSN by Janaboy on 04-15-2011 at 09:23 PM

quote:
Originally posted by CookieRevised
Unfortunalty locking Messenger when you minimize the contactlist can't be done with only pure scripting because that requires subclassing (If you can create an external DLL which subclasses the main Messenger window then it is possible).

However, locking Messenger when you close the contactlist window is possible.

But, is there a specific reason why you don't you use the Messenger Lock shortcut or menu item for this? It has the same effect though...

As for the code to lock Messenger when you close the contactlist, all you need is:
Javascript code:
function OnEvent_ContactListWndDestroyed() {
    if (!MsgPlus.MessengerIsLocked) MsgPlus.LockMessenger(true);
}



Thanks for help, is working!
But about the reason! Actually i was looking for such solution where if i away from the computer, nobody can delete from my contact list..
So if you can help me with this, i will be happy :), that if i want to delete from my contact list need password or lock of course without the deleting happen!


RE: Lock MSN on Close or Minimize MSN by CookieRevised on 04-16-2011 at 12:47 AM

I don't understand what you mean with "nobody can delete from my contact list".
What do you mean with "delete"? Do you mean 'signout'?
As such, I don't understand this either:
"if i want to delete from my contact list need password or lock of course without the deleting happen"...

Maybe if you explain it in your own language, somebody else on the forums can translate it.


RE: RE: Lock MSN on Close or Minimize MSN by Janaboy on 04-16-2011 at 02:44 PM

quote:
Originally posted by CookieRevised
I don't understand what you mean with "nobody can delete from my contact list".
What do you mean with "delete"? Do you mean 'signout'?
I such, I don't understand this either:
"if i want to delete from my contact list need password or lock of course without the deleting happen"...

Maybe if you explain it in your own language, somebody else on the forums can translate it.

Sorry!
I try to explain :)
So on my computer i'm using msn, and my girlfriend often delete users from my contact lists (when i'm not by the computer, of course without my permission). But i dont wanna all the time lock my msn, just want to stop, that can't be possible to delete contacts..
I hope you understand now!? :)

Thanks!
RE: Lock MSN on Close or Minimize MSN by CookieRevised on 04-16-2011 at 10:19 PM

Ah, In that case I suggest to:
1) Make sure you have a Windows account set up with a password (a password she doesn't know)
2) Change your Messenger password to something she doesn't know.
3) Use Messenger lock, with a shortcut key, and also with a password (again a password she doesn't know). Or maybe even better, lock your Windws account while you're away.

Only locking Messenger isn't going to solve anything if she knows your Messenger password. All she needs to do in that case is simply kill the Messenger process and start Messenger without Messenger Plus! to gain access to your Messenger account.


RE: RE: Lock MSN on Close or Minimize MSN by Janaboy on 04-17-2011 at 08:28 AM

quote:
Originally posted by CookieRevised
Ah, In that case I suggest to:
1) Make sure you have a Windows account set up with a password (a password she doesn't know)
2) Change your Messenger password to something she doesn't know.
3) Use Messenger lock, with a shortcut key, and also with a password (again a password she doesn't know). Or maybe even better, lock your Windws account while you're away.

Only locking Messenger isn't going to solve anything if she knows your Messenger password. All she needs to do in that case is simply kill the Messenger process and start Messenger without Messenger Plus! to gain access to your Messenger account.
Thanks for advices!
But have problem with these :)
If she find out (not a computer master) that i locked the msn, she will fight with me, that i have secrets blabla:) But, if i can lock only the delete of the contacts, than she never will be tell to me, that why she cant delete..Because i will fight with her in that case :) So a little bit complicated :) But if have no different way, i use this lock version..
RE: Lock MSN on Close or Minimize MSN by CookieRevised on 04-17-2011 at 08:38 AM

You can not prevent someone from deleting contacts if they know the login pasword for Messenger. Even if you would completely remove Messenger, they could still go to your online profile and delete contacts from there.