What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Help » Big initial in a message

Pages: (2): « First [ 1 ] 2 » Last »
Big initial in a message
Author: Message:
zhorty
New Member
*


Posts: 8
33 / Male / –
Joined: Sep 2004
O.P. Big initial in a message
Hello.
Is it anybody here know a script that makes a big first-initial in a message, without writing it?

Thanks.
10-02-2004 12:28 AM
Profile E-Mail PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Big initial in a message
Not possible, in a sense that you can't change the font in a message for only certain words/characters. You can only change the font for the whole message.

Given this, there is another possebility though. You can use/create a "talker" for StuffPlug-NG which uses the Messenger Plus! character codes to make the first letter bold (and in color if you wish). But this also means that your contacts need Messenger Plus! to be installed, otherwise they wont see the bold letter and only some weird characters... (note: I didn't tried this yet, so I don't know if Plus!-tags are reconized within a StuffPlug-NG talker, but I assume they are)

With such a StuffPlug-NG Talker, this will be what the contacts with Messenger Plus! will see:
    "Hello world..."

This will be what the contacts without Plus! will see:
    "(!FB)(!FC4)H(!FR)ello world..."
or
    "4Hello world"


To make this talker, create a file called "capital.vbs" in the StuffPlug-NG talker directory and put this inside the file:
code:
Function talker(input)
  If input = "" Then
    talker = ""
  Else
    talker = "(!FB)(!FC4)" & Left(Trim(input), 1) & "(!FR)" & Mid(Trim(input), 2)
  End If
End Function

Edited by Chrono: Cookie th3 n00b doesnt know how to use bbcode :refuck:
Edited by Cookie: What? Who? Where?

This post was edited on 10-15-2004 at 11:40 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-02-2004 01:11 AM
Profile PM Find Quote Report
zhorty
New Member
*


Posts: 8
33 / Male / –
Joined: Sep 2004
O.P. RE: Big initial in a message
Hello.
Sorry for replying this late, but i was away for some days.

I don't mean a big initial, but a big one like "H" here: "Hello" :P
Without holding down shift to make one, just automaticly write small, and the first will become big?

Sorry my english, Hope you understand.

This post was edited on 10-15-2004 at 04:50 PM by zhorty.
10-15-2004 04:46 PM
Profile E-Mail PM Web Find Quote Report
crank
Full Member
***

Avatar
Failed to come back here :(

Posts: 304
Reputation: 17
34 / Male / Flag
Joined: Mar 2004
Status: Away
RE: Big initial in a message
Do You Mean Like This??
i think that has to do with something else then doing anything in messenger
I haven't been active here in ages.
If you're wondering who i am, read my reputations. I used to make plugins, skins and spam the IRC channels here back in the good old days before Windows Live.
10-15-2004 05:15 PM
Profile E-Mail PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Big initial in a message
code:
Function talker(strInput)
   If strInput <> "" then
      If InStr(1, "abcdefghijklmnopqrstuvwxyz", Left(strInput, 1)) Then
         talker = UCase(Left(strInput, 1)) + Right(strInput, Len(strInput) - 1)
      Else: talker = strInput
      End If
   Else: talker = ""
   End If
End Function

Extract the file to C:\Program Files\Messenger Plus! 3\Plugins\StuffPlug-NG or whereever you have installed Messenger Plus! to.

In a conversation window type in /xautotalker capital then press enter
Close the conversation window and reopen it, now every time you type it will change the first letter to a capital

.zip File Attachment: talker.capital.zip (300 bytes)
This file has been downloaded 166 time(s).

This post was edited on 10-15-2004 at 06:01 PM by matty.
10-15-2004 05:51 PM
Profile E-Mail PM Find Quote Report
zhorty
New Member
*


Posts: 8
33 / Male / –
Joined: Sep 2004
O.P. RE: Big initial in a message
That didn't work wery well :(
10-15-2004 06:50 PM
Profile E-Mail PM Web Find Quote Report
zhorty
New Member
*


Posts: 8
33 / Male / –
Joined: Sep 2004
O.P. RE: Big initial in a message
Ops, i haven't enabled the auto-talker, it worked now.
Thanks Matty! :D
10-15-2004 06:51 PM
Profile E-Mail PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Big initial in a message
Your welcome, just next time if you have to make another post, use the [Image: edit.gif] button to change what you said.

And your welcome.
10-15-2004 06:54 PM
Profile E-Mail PM Find Quote Report
zhorty
New Member
*


Posts: 8
33 / Male / –
Joined: Sep 2004
O.P. RE: RE: Big initial in a message
quote:
Originally posted by Matty
Your welcome, just next time if you have to make another post, use the [Image: edit.gif] button to change what you said.

And your welcome.

Actually i know about that edit button, and I don't like when people doublepost neither, but I've just visited a forum, and They had disabled the edit button, so I was a little into that forum (6)

Gonna remember it next time ;)
10-15-2004 07:08 PM
Profile E-Mail PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: RE: Big initial in a message
btw

quote:
Originally posted by Matty
code:
Function talker(strInput)
   If strInput <> "" then
      If InStr(1, "abcdefghijklmnopqrstuvwxyz", Left(strInput, 1)) Then
         talker = UCase(Left(strInput, 1)) + Right(strInput, Len(strInput) - 1)
      Else: talker = strInput
      End If
   Else: talker = ""
   End If
End Function


This can be much shorter I believe, like so:
code:
Function talker(strInput)
  talker = UCase(Left(strInput, 1)) + Mid(strInput, 2)
End Function

- UCase will only uppercase characters which have an uppercased equivalent, the rest is left alone, so no need for double checking.
- The line will also convert a 0-length string to a 0-length string (used by StuffPlug-NG to check for a valid talker).
;)

This post was edited on 10-15-2004 at 11:56 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-15-2004 11:55 PM
Profile 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