What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [request]add an icon automatically in the beginning of every line I type

[request]add an icon automatically in the beginning of every line I type
Author: Message:
bungleMX
Full Member
***

Avatar

Posts: 135
Joined: May 2003
O.P. [request]add an icon automatically in the beginning of every line I type
Hi, has anyone made or can do an Script tu add a personal Emoticon en every line of the conversation with out type it down?
Like this

-----------

bunglemx says:
(H) Hi how are you?

x says:

fine and you?

bunglemx says:
(H) I'm ok

-------------



I hope someone can do it :D
09-04-2007 05:22 PM
Profile PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: [request]add an icon automatically in the beginning of every line I type
var smiley = ":D";

function OnEvent_ChatWndSendMessage(ChatWnd, Message){
    Message = smiley+" "+Message;
    return Message;
}
<Eljay> "Problems encountered: shit blew up" :zippy:
09-04-2007 05:36 PM
Profile PM Find Quote Report
bungleMX
Full Member
***

Avatar

Posts: 135
Joined: May 2003
O.P. RE: RE: [request]add an icon automatically in the beginning of every line I type
quote:
Originally posted by SpunkyLoveMuff
var smiley = ":D";

function OnEvent_ChatWndSendMessage(ChatWnd, Message){
    Message = smiley+" "+Message;
    return Message;
}




Woow that was so fast, and works cool
one million thanks!!
09-04-2007 05:50 PM
Profile PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: [request]add an icon automatically in the beginning of every line I type
Thats what I'm here for ;)
<Eljay> "Problems encountered: shit blew up" :zippy:
09-04-2007 05:52 PM
Profile PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [request]add an icon automatically in the beginning of every line I type
Why not shorten it to this:

code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
    return ':D '+Message;
}

Why waste memory by allocating it for a variable when it isn't needed?

This post was edited on 09-04-2007 at 06:02 PM by matty.
09-04-2007 06:02 PM
Profile E-Mail PM Find Quote Report
toddy
Veteran Member
*****

Avatar
kcus uoy

Posts: 2573
Reputation: 49
– / Male / Flag
Joined: Jun 2004
RE: [request]add an icon automatically in the beginning of every line I type
quote:
Originally posted by matty
Why not shorten it to this:

code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
    return ':D '+Message;
}

Why waste memory by allocating it for a variable when it isn't needed?
because SpunkyLoveMuff is newb
09-04-2007 06:08 PM
Profile PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: [request]add an icon automatically in the beginning of every line I type
It's be easier for him to find which bit to edit... I could have shortened it if I knew for sure that they'd understand it
<Eljay> "Problems encountered: shit blew up" :zippy:
09-04-2007 06:32 PM
Profile PM Find Quote Report
« 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