Shoutbox

MSN Plus Feature/Script suggestion - 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: MSN Plus Feature/Script suggestion (/showthread.php?tid=65442)

MSN Plus Feature/Script suggestion by Adrian DX on 08-26-2006 at 10:35 PM

Hi all!
I'm new to these forums and I usually wait by making new threads in forums I'm new to untill I have about 100 posts, but I just need to post this before I forget about it :P

I have a couple of ideas for MSN Plus.

My first idea is feature/script is some kind of addon that automaticly changes messages that contain one or more sentences (user defined) that are written in the ever annoying CAPITALS  are changed into regular non-capital text. its something I really, really need because some people just don't understand how annoying this is.

And my seccond idea is to give users the posibility to set certain settings for difrent users.. one setting I would really love to see is to set wich font should be set for each user.. I know you can set MSN plus so that every contact has one type of text, and thats pretty close to what I'm looking for, but its not quite it :P Also the seccond option I would like to see is the opprotunity for users to disable emoticons for some people.. or maybe disable only some custom emoticons.

I hope the Messenger Plus! team reads this and materializes the ideas. And I'm also terribly sorry if this was posted in the wrong section or if some of these features already exists:$
Also I appologize if my writing was hard to read (I'm not english or american ;)

Thanks for reading


RE: MSN Plus Feature/Script suggestion by DarkMe on 08-26-2006 at 10:47 PM

It's Msg Plus not MSN Plus

Good ideas i also hate capital letters :p


RE: MSN Plus Feature/Script suggestion by Jesus on 08-26-2006 at 11:46 PM

code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    return Message.toLowerCase()
}
this removes all capitals from all messages in the conversation window.
RE: RE: MSN Plus Feature/Script suggestion by Adrian DX on 08-27-2006 at 12:02 AM

quote:
Originally posted by Jesus
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    return Message.toLowerCase()
}
this removes all capitals from all messages in the conversation window.


Thats a pretty good start ^_^

The only thing that would make it perfect is if it would only activate if there is one or more words that is written in capitals :D

Thanks =)
RE: RE: RE: MSN Plus Feature/Script suggestion by mickael9 on 08-27-2006 at 12:40 AM

quote:
Originally posted by Adrian DX
quote:
Originally posted by Jesus
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    return Message.toLowerCase()
}
this removes all capitals from all messages in the conversation window.


Thats a pretty good start ^_^

The only thing that would make it perfect is if it would only activate if there is one or more words that is written in capitals :D

Thanks =)


code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    if (Origin != Messenger.MyName && Message == Message.toUpperCase())
        return Message.toLowerCase();

    return Message;
}
:P
RE: MSN Plus Feature/Script suggestion by RaceProUK on 08-28-2006 at 03:15 PM

That still doesn't quite work.

code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    if (Origin != Messenger.MyName && Message.match("(^|\s)[A-Z](\s|$)").length > 0)
        return Message.toLowerCase();

    return Message;
}
should work better.
RE: MSN Plus Feature/Script suggestion by Lourix on 08-28-2006 at 05:23 PM

Some good ideas there :)