Who Can Make Me ... |
Author: |
Message: |
Burnett1
New Member

Posts: 4
36 / – / –
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 |
|
 |
Kenji
Veteran Member
    

Previously: Dazmatic, Dazzy, :zippy:
Posts: 1225 Reputation: 39
33 / / 
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 |
|
 |
Burnett1
New Member

Posts: 4
36 / – / –
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 |
|
 |
Justin
Full Member
  

Posts: 315 Reputation: 8
33 / / 
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 |
|
 |
Jarrod
Veteran Member
    

woot simpson
Posts: 1301 Reputation: 20
– / / 
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.
|
|
10-07-2008 11:51 PM |
|
 |
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 |
|
 |
Spunky
Former Super Mod
    

Posts: 3656 Reputation: 61
36 / / 
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" 
|
|
10-08-2008 10:46 AM |
|
 |
Burnett1
New Member

Posts: 4
36 / – / –
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 |
|
 |
djdannyp
Elite Member
    

Danny <3 Sarah
Posts: 3546 Reputation: 31
38 / / 
Joined: Mar 2006
|
RE: Who Can Make Me ...
Here you go
Attachment: Capitaliser 1.0.plsc (836 bytes)
This file has been downloaded 135 time(s).
This post was edited on 10-08-2008 at 10:21 PM by djdannyp.
|
|
10-08-2008 09:49 PM |
|
 |
Burnett1
New Member

Posts: 4
36 / – / –
Joined: Oct 2008
|
O.P. RE: Who Can Make Me ...
cheer  legend 
|
|
10-09-2008 12:39 AM |
|
 |
Pages: (2):
« First
[ 1 ]
2
»
Last »
|
|