What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] Font

[Request] Font
Author: Message:
Vimto
Full Member
***

Avatar
In and Out

Posts: 495
Reputation: 49
32 / Female / Flag
Joined: Jul 2006
O.P. [Request] Font
Is it possible to create a script so that when you write it will come out like this eg. ( Hi My NaMe Is JaYdE tUrNeR i LoVe ThIs FoRuM ) thanks
And when your heart begins to bleed, your dead
and dead and dead indeed.
09-07-2006 05:37 PM
Profile E-Mail PM Find Quote Report
saralk
Veteran Member
*****

Avatar

Posts: 2598
Reputation: 38
35 / Male / Flag
Joined: Feb 2003
RE: [Request] Font
I am working on it.
The Artist Formerly Known As saralk
London · New York · Paris
Est. 1989
09-07-2006 05:58 PM
Profile PM Find Quote Report
alexp2_ad
Scripting Contest Winner
****

Avatar
Who love the chocolate?

Posts: 691
Reputation: 26
36 / Male / –
Joined: May 2004
Status: Away
RE: [Request] Font
EDIT:  Damn, sorry, didn't see that saralk. :(  I'll delete mine if you want. :/

It's probably been done in one of the scripts already but sure, here ya go:

code:
function OnEvent_ChatWndSendMessage(pChatWnd,sMessage){
    if(sMessage.substr(0,8)=='/altcase'){
        sMessage = sMessage.substr(8);
        var newmessage = '';
        var uppercase = false;
        for(i=0;i<sMessage.length;i++){
            var charac = sMessage.charAt(i);
            if(uppercase){
                charac = charac.toUpperCase();
                uppercase = false;
            }
            else{
                charac = charac.toLowerCase();
                uppercase = true;
            }
            newmessage+=charac;
        }
        return newmessage;
    }
    else{
        return sMessage;
    }
}

function OnGetScriptCommands()
{
    var ScriptCommands = "<ScriptCommands>";
    ScriptCommands    +=     "<Command>";
    ScriptCommands    +=         "<Name>altcase</Name>";
    ScriptCommands    +=         "<Description>Alternates the case of the sent message</Description>";
    ScriptCommands    +=         "<Parameters>&lt;message&gt;</Parameters>";
    ScriptCommands    +=     "</Command>";
    ScriptCommands    += "</ScriptCommands>";

    return ScriptCommands;
}

There you go. :)

It uses /altcase command to send a message with annoying cases. :P

This post was edited on 09-07-2006 at 06:06 PM by alexp2_ad.
09-07-2006 06:04 PM
Profile E-Mail PM Find Quote Report
Vimto
Full Member
***

Avatar
In and Out

Posts: 495
Reputation: 49
32 / Female / Flag
Joined: Jul 2006
O.P. RE: [Request] Font
Thanks alot to both of you :D Sorry to be a pain but is there any chance it can work without entering the /altcase command?
And when your heart begins to bleed, your dead
and dead and dead indeed.
09-07-2006 06:14 PM
Profile E-Mail PM Find Quote Report
alexp2_ad
Scripting Contest Winner
****

Avatar
Who love the chocolate?

Posts: 691
Reputation: 26
36 / Male / –
Joined: May 2004
Status: Away
RE: [Request] Font
code:
var altcaseon = new Array();

function OnEvent_ChatWndSendMessage(pChatWnd,sMessage){
    if(sMessage == '/altcase'){
        altcaseon[pChatWnd.handle] = !altcaseon[pChatWnd.handle];
        return '';
    }
    else if(sMessage.substr(0,8)=='/altcase'){
        sMessage = sMessage.substr(8);
        var newmessage = '';
        var uppercase = false;
        for(i=0;i<sMessage.length;i++){
            var charac = sMessage.charAt(i);
            if(uppercase){
                charac = charac.toUpperCase();
                uppercase = false;
            }
            else{
                charac = charac.toLowerCase();
                uppercase = true;
            }
            newmessage+=charac;
        }
        return newmessage;
    }
    else if(altcaseon[pChatWnd.handle]){
        var newmessage = '';
        var uppercase = false;
        for(i=0;i<sMessage.length;i++){
            var charac = sMessage.charAt(i);
            if(uppercase){
                charac = charac.toUpperCase();
                uppercase = false;
            }
            else{
                charac = charac.toLowerCase();
                uppercase = true;
            }
            newmessage+=charac;
        }
        return newmessage;
    }
    else{
        return sMessage;
    }
}

function OnGetScriptCommands()
{
    var ScriptCommands = "<ScriptCommands>";
    ScriptCommands    +=     "<Command>";
    ScriptCommands    +=         "<Name>altcase</Name>";
    ScriptCommands    +=         "<Description>Alternates the case of the sent message</Description>";
    ScriptCommands    +=         "<Parameters>&lt;message&gt;</Parameters>";
    ScriptCommands    +=     "</Command>";
    ScriptCommands    += "</ScriptCommands>";

    return ScriptCommands;
}
That will work as before, except entering just /altcase on it's own will turn on or off altcase mode and do it for all messages (in that chat window).

If you REALLY want it for every message, then here you go:

code:
function OnEvent_ChatWndSendMessage(pChatWnd,sMessage){
        var newmessage = '';
        var uppercase = false;
        for(i=0;i<sMessage.length;i++){
            var charac = sMessage.charAt(i);
            if(uppercase){
                charac = charac.toUpperCase();
                uppercase = false;
            }
            else{
                charac = charac.toLowerCase();
                uppercase = true;
            }
            newmessage+=charac;
        }
        return newmessage;
}


Choose whichever you like. ;)

This post was edited on 09-07-2006 at 06:23 PM by alexp2_ad.
09-07-2006 06:23 PM
Profile E-Mail PM Find Quote Report
Vimto
Full Member
***

Avatar
In and Out

Posts: 495
Reputation: 49
32 / Female / Flag
Joined: Jul 2006
O.P. RE: [Request] Font
Thanks alot :D:D:D Yey Love you both :)
And when your heart begins to bleed, your dead
and dead and dead indeed.
09-07-2006 06:29 PM
Profile E-Mail PM Find Quote Report
saralk
Veteran Member
*****

Avatar

Posts: 2598
Reputation: 38
35 / Male / Flag
Joined: Feb 2003
RE: [Request] Font
quote:
Originally posted by alexp2_ad
EDIT:  Damn, sorry, didn't see that saralk. :(  I'll delete mine if you want. :/

No worries, I started working on it, however, I accidently got into an infinate loop, and then MSN crashed so I went to have dinner, and when I came back, you had finished :P
The Artist Formerly Known As saralk
London · New York · Paris
Est. 1989
09-07-2006 06:49 PM
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