What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » MSN Plus Feature/Script suggestion

MSN Plus Feature/Script suggestion
Author: Message:
Adrian DX
New Member
*


Posts: 3
Joined: Aug 2006
O.P. MSN Plus Feature/Script suggestion
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
08-26-2006 10:35 PM
Profile E-Mail PM Find Quote Report
DarkMe
Full Member
***

Avatar
Thx ins4ne for my av :p

Posts: 471
Reputation: 20
31 / Male / –
Joined: Jun 2006
RE: MSN Plus Feature/Script suggestion
It's Msg Plus not MSN Plus

Good ideas i also hate capital letters :p

This post was edited on 08-26-2006 at 10:49 PM by DarkMe.
[Image: darkme.png]
08-26-2006 10:47 PM
Profile E-Mail PM Web Find Quote Report
Jesus
Scripting Contest Winner
****

Avatar
Koffie, my cat ;)

Posts: 623
Reputation: 15
37 / Male / Flag
Joined: Jul 2005
RE: MSN Plus Feature/Script suggestion
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    return Message.toLowerCase()
}
this removes all capitals from all messages in the conversation window.
08-26-2006 11:46 PM
Profile PM Find Quote Report
Adrian DX
New Member
*


Posts: 3
Joined: Aug 2006
O.P. RE: RE: MSN Plus Feature/Script suggestion
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 =)

This post was edited on 08-27-2006 at 12:02 AM by Adrian DX.
08-27-2006 12:02 AM
Profile E-Mail PM Find Quote Report
mickael9
Full Member
***


Posts: 117
Reputation: 3
32 / Male / Flag
Joined: Jul 2005
RE: RE: RE: MSN Plus Feature/Script suggestion
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

This post was edited on 08-27-2006 at 12:41 AM by mickael9.
08-27-2006 12:40 AM
Profile PM Web Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: MSN Plus Feature/Script suggestion
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.
[Image: spartaafk.png]
08-28-2006 03:15 PM
Profile PM Web Find Quote Report
Lourix
Full Member
***

Avatar


Posts: 422
Reputation: 13
32 / Male / Flag
Joined: Aug 2006
RE: MSN Plus Feature/Script suggestion
Some good ideas there :)
[Image: 202180054.png]
08-28-2006 05:23 PM
Profile E-Mail 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