What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! General » Status when locked

Status when locked
Author: Message:
bimmerdriver
New Member
*


Posts: 10
Joined: Dec 2007
O.P. Status when locked
I noticed that when MsgPlus! is locked, the status goes to whatever it's configured to in MsgPlus!, regardless of whether I'm currently online, busy, or whatever. I have it set to Be Right Back in case I need to lock during a conversation. However, I like to use the lock even when I plan to go away from my computer for an extended period of time, say overnight. When I do that, I set my status to Away, but I just noticed by testing with two accounts that the Away status is forced to Be Right Back when it's locked which isn't the case. It would be nice if MsgPlus! would provide an option to only change the status for open conversations and if the status is online, otherwise, leave it alone (e.g., if I set it to away, leave it as away until I unlock and change it to online).
02-11-2008 06:08 AM
Profile PM Find Quote Report
Justin
Full Member
***

Avatar

Posts: 315
Reputation: 8
32 / Male / Flag
Joined: Sep 2007
RE: Status when locked
I thought i posted on this :S

Plus! > preferences > messenger > messenger lock.

Untick the 'change my status to' then set the status you want, it should not change to default when you lock messenger.
02-12-2008 10:05 PM
Profile E-Mail PM Find Quote Report
Quantum
Disabled Account
*****

Away.

Posts: 1055
Reputation: -17
30 / Male / Flag
Joined: Feb 2007
RE: Status when locked
Plus! Icon. > Preferences. > Messenger. > Messenger lock.

Uncheck "change my status to ..." then apply.

EDIT: Bet.

This post was edited on 02-12-2008 at 10:18 PM by Quantum.
No longer here.
02-12-2008 10:17 PM
Profile PM Find Quote Report
Jesus
Scripting Contest Winner
****

Avatar
Koffie, my cat ;)

Posts: 623
Reputation: 15
37 / Male / Flag
Joined: Jul 2005
RE: Status when locked
that's not exactly what the topic starter asked for if I'm not mistaken.

Just to get this clear: When you lock messenger, you want to change the status to brb only if your current status is set to online. If you lock messenger with another status set, it should not change your status.

If this is what you want then it can probably be done with a script.
Man is least himself when he is in his own person. Give him a mask and he will tell you the truth. (Oscar Wilde)
02-12-2008 11:01 PM
Profile PM Find Quote Report
bimmerdriver
New Member
*


Posts: 10
Joined: Dec 2007
O.P. RE: RE: Status when locked
quote:
Originally posted by Jesus
Just to get this clear: When you lock messenger, you want to change the status to brb only if your current status is set to online. If you lock messenger with another status set, it should not change your status.

If this is what you want then it can probably be done with a script.
That's exactly what I mean. I use MsgPlus to lock it when I go away from my computer. The way MsgPlus forces the status to BRB irrespective of what the status is doesn't work very well for that. I only want to use BRB if I'm online. Otherwise, just leave the status as-is and lock it down. If there is a way to do that with a script, that would be great.
02-17-2008 10:28 PM
Profile PM Find Quote Report
pollolibredegrasa
Full Member
***

Avatar
formerly fatfreechicken

Posts: 483
Reputation: 34
35 / Male / Flag
Joined: May 2005
RE: RE: Status when locked
Uncheck the option mentioned earlier in the thread, as this will stop it changing your status when you go into lock.

Then, create a script with the following code:
code:
function OnEvent_MessengerLocked(){
    if (Messenger.MyStatus == 3){
        Messenger.MyStatus = 5; //Set to BRB
    }
}

This will simply set your status to brb whenever your status is online and you lock messenger. (You'll need to manually change your status though when you unlock however)


Hope this helps :)

This post was edited on 02-17-2008 at 11:08 PM by pollolibredegrasa.
;p

[Image: chickennana.gif] Vaccy is my thin twin! [Image: chickennana.gif]
02-17-2008 11:03 PM
Profile PM Find Quote Report
bimmerdriver
New Member
*


Posts: 10
Joined: Dec 2007
O.P. RE: RE: RE: Status when locked
quote:
Originally posted by fatfreechicken
Uncheck the option mentioned earlier in the thread, as this will stop it changing your status when you go into lock.

Then, create a script with the following code:
code:
function OnEvent_MessengerLocked(){
    if (Messenger.MyStatus == 3){
        Messenger.MyStatus = 5; //Set to BRB
    }
}

This will simply set your status to brb whenever your status is online and you lock messenger. (You'll need to manually change your status though when you unlock however)


Hope this helps :)
Thanks a lot for the help. I'm a newb with scripts so I have a question about how to use it. Do I have to load and execute it each time I start up WLM or is there a way to get MsgPlus to load/execute it when it starts?
02-18-2008 04:46 AM
Profile PM Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: Status when locked
Once you've created the script and saved it, just ensure the Scripts window shows it as 'Enabled' ;)
[Image: spartaafk.png]
02-19-2008 02:16 AM
Profile PM Web Find Quote Report
Jesus
Scripting Contest Winner
****

Avatar
Koffie, my cat ;)

Posts: 623
Reputation: 15
37 / Male / Flag
Joined: Jul 2005
RE: RE: RE: Status when locked
quote:
Originally posted by fatfreechicken
(You'll need to manually change your status though when you unlock however)
I added some code to fix this
code:
ChangedOnLock = false

function OnEvent_MessengerLocked(){
    if (Messenger.MyStatus == 3){
        Messenger.MyStatus = 5; //Set to BRB
        ChangedOnLock = true;
    }
}

function OnEvent_MessengerUnlocked(){
    if (Messenger.MyStatus == 5 && ChangedOnLock == true){
        Messenger.MyStatus = 3; //Revert to Online
        ChangedOnLock = false;
    }
}
This will only revert your status to Online if it was set to BRB by this script while locking messenger.

This post was edited on 02-19-2008 at 04:12 AM by Jesus.
Man is least himself when he is in his own person. Give him a mask and he will tell you the truth. (Oscar Wilde)
02-19-2008 04:12 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On