What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » StuffPlug Talker: UCase

StuffPlug Talker: UCase
Author: Message:
Mike
Elite Member
*****

Avatar
Meet the Spam Family!

Posts: 2795
Reputation: 48
31 / Male / Flag
Joined: Mar 2003
O.P. RE: StuffPlug Talker: UCase
Ok....
Here is the updated version.
Go to your StuffPlug NG folder of your talkers (usually "C:\Program Files\Messenger Plus! 3\Plugins\StuffPlug-NG\Talkers")
Locate the file named talker.ucase.vbs
Right click on it and click "Edit"

Find the line that says
code:
Function talker(ByVal strinput)
(first line)
Paste the following under it:
code:
if left(strinput, 2) = "ok" or left(strinput, 7) = "http://" or left(strinput, 3) = "lol" or left(strinput, 3) = "www" then
     talker = strinput 
     exit function
end if
So it should look like this:
code:
Function talker(ByVal strinput)

if left(strinput, 2) = "ok" or left(strinput, 7) = "http://" or left(strinput, 3) = "lol" or left(strinput, 3) = "www" then
     talker = strinput 
     exit function
end if

talker = "" & UCase(Left(strinput, 1)) & Mid(strinput, 2)
End Function

Click File -> Save

By doing this, words like "lol", "www", "http" wont be capitalized :)
YouTube closed-captions ripper (also allows you to download videos!)
02-07-2005 03:31 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
StuffPlug Talker: UCase - by Mike on 02-05-2005 at 07:21 PM
RE: StuffPlug Talker: UCase - by _Humphreys on 02-05-2005 at 07:28 PM
RE: StuffPlug Talker: UCase - by jameslives on 02-05-2005 at 07:40 PM
RE: StuffPlug Talker: UCase - by _Humphreys on 02-05-2005 at 07:41 PM
RE: StuffPlug Talker: UCase - by Mike on 02-07-2005 at 03:31 PM
RE: StuffPlug Talker: UCase - by _Humphreys on 02-07-2005 at 04:34 PM


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