What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Release] Status Interceptor (Updated v1.2)

Pages: (2): « First « 1 [ 2 ] Last »
[Release] Status Interceptor (Updated v1.2)
Author: Message:
Dave
Full Member
***


Posts: 167
Reputation: 1
33 / Male / Flag
Joined: Aug 2006
RE: [Release] Status Interceptor (Updated v1.1)
using the first version, on the drop down menu from the plus icon on the contact page, what does the '[  ] Send to all open conversations' button do?
PC Model: HP dv9340ea
OS: Windows Vista SP 1
WLM version: 14
MP!L version: 4.81
08-15-2006 09:34 PM
Profile E-Mail PM Find Quote Report
M73A
Veteran Member
*****

Avatar


Posts: 3213
Reputation: 37
34 / Male / Flag
Joined: Jul 2004
RE: [Release] Status Interceptor (Updated v1.1)
what if i say im going for lunch at 12, will i bet set to out to lunch?

[Image: lost7ru.gif]
08-15-2006 09:42 PM
Profile E-Mail PM Find Quote Report
cloudhunter
Senior Member
****


Posts: 536
Reputation: 18
37 / – / –
Joined: Dec 2005
RE: [Release] Status Interceptor (Updated v1.1)
quote:
Originally posted by Dave
using the first version, on the drop down menu from the plus icon on the contact page, what does the '[  ] Send to all open conversations' button do?

Try it... I imagine it sends "BRB" or whatever to all your open conversation windows...

Cloudy
[Image: cloudy.jpg]
Sig by pirateok/marisaok/marisa ;)
quote:
Originally posted by Moulin Rouge
The greatest thing you'll ever learn, is just to love and be loved in return

6712 days, 10 hours, 45 minutes, 21 seconds ago
08-15-2006 10:24 PM
Profile E-Mail PM Find Quote Report
phalanxii
Full Member
***


Posts: 146
Reputation: 5
32 / Male / Flag
Joined: Aug 2006
Status: Away
O.P. RE: [Release] Status Interceptor (Updated v1.2)
Version 1.2 is now released. This contains an actual settings window, where you can toggle which keywords that you want to be detected (for those who don't like "busy", "lunch" and "dinner"). There is also a custom mask for your personal message using "%b", "%k" and "%a".

Change Log:

16th of August 2006 - v1.2
  • Added a settings interface, containing all previous (and new) settings
  • Different status keywords can be toggled for each email (for those who don't want "busy", "lunch" and "dinner")
  • Custom mask for personal message
This will most likely be my final release, though I may update bugs. I may also add in a customisable wordbank, but not anytime soon.

If you want a translation, tell me the translated words and keywords (exact and preferred capitalization helps), and I will see what I can do.
08-16-2006 07:12 AM
Profile PM Find Quote Report
Dave
Full Member
***


Posts: 167
Reputation: 1
33 / Male / Flag
Joined: Aug 2006
RE: [Release] Status Interceptor (Updated v1.2)
thanks, this looks great.  1 question though, do we need to delete the previous versions before we load this one or will it do it automatically?
PC Model: HP dv9340ea
OS: Windows Vista SP 1
WLM version: 14
MP!L version: 4.81
08-16-2006 09:45 AM
Profile E-Mail PM Find Quote Report
phalanxii
Full Member
***


Posts: 146
Reputation: 5
32 / Male / Flag
Joined: Aug 2006
Status: Away
O.P. RE: RE: [Release] Status Interceptor (Updated v1.2)
quote:
Originally posted by Dave
thanks, this looks great.  1 question though, do we need to delete the previous versions before we load this one or will it do it automatically?

No, I think you'll need to delete it yourself. Hope it's not too much of an inconvenience. :)
08-16-2006 10:13 AM
Profile PM Find Quote Report
lrac522
Full Member
***

Avatar

Posts: 317
Reputation: 9
– / Male / Flag
Joined: Jan 2006
RE: [Release] Status Interceptor (Updated v1.2)
That's very nice. I'm so filled with scripts...:D
[Image: signature3phpga4.png]
08-16-2006 08:25 PM
Profile E-Mail PM Find Quote Report
PAT.riot73
New Member
*


Posts: 12
– / Male / –
Joined: Jan 2006
RE: [Release] Status Interceptor (Updated v1.2)
in v1.3, theres an issue w/ the "send to all open conversations" when you type in "back" or "bak" your status changes but it doesnt send the message to all the open convos

to fix this just replace the function searchmessage in status interceptor.js with this

code:
function SearchMessage(Message)
{
    for(var i = 0; i < 8; i++)
    {
        SplitMessage = Message.toLowerCase().split(StatusKeyword[i], 2);
       
        if(SplitMessage.length > 1 && KeywordSetting.substr(i, 1) == 1)
        {
            //If status change is not to "back" or "bak"
            if(i > 1)
            {
                if(ScriptStatus == "Online")
                {
                    StoredStatus = Messenger.MyStatus;
                    StoredPsm = Messenger.MyPersonalMessage;
                }
            }
           
            ChangeStatus(i);
           
            //If status change is not to "back" or "bak"
            if(i > 1)
                ChangePSM(Message, Message.toLowerCase().search(StatusKeyword[i]), StatusKeyword[i].length);
            break;
        }
    }
}


the difference is i moved the break to an upper nest so the for() loop wouldnt continue to iterate even if the statuskeyword was "back" or "bak"

cheers for the script mate(Y)
"For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life." - John 3:16
10-01-2006 06:09 AM
Profile E-Mail PM Find Quote Report
Pages: (2): « First « 1 [ 2 ] Last »
« 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