What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Automatically add Emoticons

Automatically add Emoticons
Author: Message:
mickael9
Full Member
***


Posts: 117
Reputation: 3
32 / Male / Flag
Joined: Jul 2005
RE: RE: Automatically add Emoticons
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

This post was edited on 08-21-2006 at 12:46 AM by mickael9.
08-21-2006 12:45 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Automatically add Emoticons - by kimmy707 on 08-20-2006 at 04:15 PM
RE: Automatically add Emoticons - by artfuldodga on 08-20-2006 at 04:20 PM
RE: Automatically add Emoticons - by Felu on 08-20-2006 at 04:23 PM
RE: RE: Automatically add Emoticons - by kimmy707 on 08-21-2006 at 12:06 AM
RE: Automatically add Emoticons - by Huhu_Manix on 08-20-2006 at 11:17 PM
RE: RE: Automatically add Emoticons - by mickael9 on 08-21-2006 at 12:45 AM


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