What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Who Can Make Me ...

Pages: (2): « First [ 1 ] 2 » Last »
Who Can Make Me ...
Author: Message:
Burnett1
New Member
*


Posts: 4
35 / – / –
Joined: Oct 2008
O.P. Who Can Make Me ...
[font=Tahoma]
Just Wounderin If Thurs Any Chance Anyone Can Make Or Knows Of A Script That Makes Every First Letter Of Every Word In A Msn Conversation Turn To Cap ?
10-07-2008 08:07 PM
Profile E-Mail PM Find Quote Report
Kenji
Veteran Member
*****

Avatar
Previously: Dazmatic, Dazzy, :zippy:

Posts: 1226
Reputation: 39
32 / Male / Flag
Joined: Jun 2006
Status: Away
RE: Who Can Make Me ...
No, and if anyone makes one I will personally kill them.
10-07-2008 09:54 PM
Profile PM Find Quote Report
Burnett1
New Member
*


Posts: 4
35 / – / –
Joined: Oct 2008
O.P. RE: Who Can Make Me ...
How ? Wits Rong With A Script That Would Do That ?
10-07-2008 10:15 PM
Profile E-Mail PM Find Quote Report
Justin
Full Member
***

Avatar

Posts: 315
Reputation: 8
32 / Male / Flag
Joined: Sep 2007
RE: Who Can Make Me ...
quote:
Originally posted by Burnett1
How ? Wits Rong With A Script That Would Do That ?

It's annoying. I hate it when people talk like that.
10-07-2008 11:27 PM
Profile E-Mail PM Find Quote Report
Jarrod
Veteran Member
*****

Avatar
woot simpson

Posts: 1304
Reputation: 20
– / Male / Flag
Joined: Sep 2006
RE: Who Can Make Me ...
quote:
Originally posted by Dazzy
No, and if anyone makes one I will personally kill them.
agreed
[edit more python

Python code:
a = "hello world this is the most annoying python code ever"
b = 0
d = 0
c = ""
e = ""
a = raw_input("text here")
for letter in a:
    if d == 0:
        c = c + letter.upper()
        d = d + 1
       
    else:
        c = c + letter
 
for letter in c:
    if letter == " ":
        b = 1
    else:
        if b == 1:
            letter = letter.upper()
            b = 0
 
    e = e + letter
print e


This post was edited on 10-08-2008 at 04:36 AM by Jarrod.

[Image: 5344.png]
[Image: sig.png]

A.k.a. The Glad Falconer














10-07-2008 11:51 PM
Profile E-Mail PM Find Quote Report
davidpolitis
Full Member
***


Posts: 371
Reputation: 16
Joined: Aug 2006
RE: Who Can Make Me ...
Does this work? EDIT: used SLM's code below.
JScript code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message)
{
    Msg = Message.split(" ");
    for(var s in Msg)
    {
        Msg[s] = Msg[s].substr(0,1).toUpper() + Msg[s].substr(1);
    }
    return Msg.join(" ");
}


This post was edited on 10-08-2008 at 11:04 AM by davidpolitis.
10-08-2008 10:28 AM
Profile PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: Who Can Make Me ...
JScript code:
msg = msg.split(" ")
for(var s in msg){
    msg[s] = msg[s].substr(0,1).toUpper() + msg[s].substr(1)
}
return msg.join(" ")


You'd need to add checking for commands etc... Probably not actually as they're case insensitive

This post was edited on 10-08-2008 at 10:50 AM by Spunky.
<Eljay> "Problems encountered: shit blew up" :zippy:
10-08-2008 10:46 AM
Profile PM Find Quote Report
Burnett1
New Member
*


Posts: 4
35 / – / –
Joined: Oct 2008
O.P. RE: Who Can Make Me ...
I cant get these codes to work, I dont have a clue about these codes so help would be appreciated.
10-08-2008 08:03 PM
Profile E-Mail PM Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
RE: Who Can Make Me ...
Here you go

.plsc File Attachment: Capitaliser 1.0.plsc (836 bytes)
This file has been downloaded 107 time(s).

This post was edited on 10-08-2008 at 10:21 PM by djdannyp.
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5219 days, 20 hours, 8 minutes, 49 seconds ago
10-08-2008 09:49 PM
Profile E-Mail PM Find Quote Report
Burnett1
New Member
*


Posts: 4
35 / – / –
Joined: Oct 2008
O.P. RE: Who Can Make Me ...
cheer :D legend :D
10-09-2008 12:39 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