Shoutbox

Automatically add Emoticons - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Automatically add Emoticons (/showthread.php?tid=65158)

Automatically add Emoticons by kimmy707 on 08-20-2006 at 04:15 PM

Is there any way to add emoticons automatically with windows messenger plus live????????*-)
(like adding a lot at one time instead of doing it 1 by 1:D)


RE: Automatically add Emoticons by artfuldodga on 08-20-2006 at 04:20 PM

add them automatically, from where? like other peoples conversations? .. well, i suppose they can be added to an emoticons database using plus.. and later you pick what keyword etc .. will let you yourself display it.

but i don't think adding them automatically... would't work to well, as other people could have their keyword the same as a keyword or characters you already use for your own selected emoticons.

good idea though, hope to see what others think.


RE: Automatically add Emoticons by Felu on 08-20-2006 at 04:23 PM

Use this emoadder. It will help you in adding many emoticons at a time. http://shoutbox.menthix.net/attachment.php?pid=716423


RE: Automatically add Emoticons by Huhu_Manix on 08-20-2006 at 11:17 PM

Someone know how we can add emo with a script ?


RE: RE: Automatically add Emoticons by kimmy707 on 08-21-2006 at 12:06 AM

quote:
Originally posted by -!Felu!-
Use this emoadder. It will help you in adding many emoticons at a time. http://shoutbox.menthix.net/attachment.php?pid=716423


It worked!!thank you!:D:D
RE: RE: Automatically add Emoticons by mickael9 on 08-21-2006 at 12:45 AM

quote:
Originally posted by Huhu_Manix
Someone know how we can add emo with a script ?

code:
function OnEvent_Timer(sTimerId)
{
    if (sTimerId == "ClickAddButton")
    {
        var hwnd = Interop.Call("User32", "FindWindowW", "ThunderRT6FormDC", "Emoticon Adder"); // Find the Emoticon Adder window
        if (hwnd != 0)
        {
            hwnd = Interop.Call("User32", "FindWindowExW", hwnd, 0, "ThunderRT6CommandButton", 0); // Find the Add button
            if (hwnd != 0)
            {
                Interop.Call("User32","SendMessageW", hwnd, 245, 0, 0); // Click it !
            }
        }
    }
}
var shell  = new ActiveXObject("WScript.Shell");
var folder = MsgPlus.ScriptFilesPath + "\\emo";

shell.Run('"' + folder + '\\EmoAdder.exe"', 6, false);
MsgPlus.AddTimer("ClickAddButton",2000);
:P