What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » << Script for Quick texts >>

<< Script for Quick texts >>
Author: Message:
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
32 / Male / Flag
Joined: Apr 2004
RE: << Script for Quick texts >>
Again, nobody succeeded in giving the right code.
code:
//By Jimbodud
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
if (Message.substr(0, 4)== "test"){
return'test1'
}
if (Message.substr(0, 4) == "cant"){
return'can't'
}
if (Message.substr(0, 4) == "dont"){
return'don't'
}
}

This code will only match if the word is in front, and will forget the rest of the message. Example: "cant do that" gives "can't" without the "do that".
code:
//By NanaFreak
var original = new Array("dont","cant","test");//what you are changing from
var changed = new Array("don't","can't","test1");//what you are changing to
function OnEvent_ChatWndSendMessage(ChatWnd,Message){
for(i in original){
Message = Message.replace(original[i],changed[i]);
}
return Message;
}
This code is better, only it's case-sensitive and it'll only replace one occurrence per array element. That's why markee was using RegExp's. So, the code which should do it:
code:
var original = new Array("dont","cant","test");//what you are changing from
var changed = new Array("don't","can't","test1");//what you are changing to
function OnEvent_ChatWndSendMessage(ChatWnd,Message){
for(i in original){
Message = Message.replace(RegExp(original[i], "gi"), changed[i]);
}
return Message;
}
;)
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
01-06-2007 02:09 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Quick Texts - Help ! - by Double_N2 on 01-05-2007 at 03:55 PM
RE: Quick Texts - Help ! - by CookieRevised on 01-05-2007 at 05:45 PM
RE: Quick Texts - Help ! - by Double_N2 on 01-05-2007 at 08:46 PM
RE: << Script for Quick texts >> - by Tochjo on 01-06-2007 at 05:26 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