What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Help] Detecting control mouse-over

[Help] Detecting control mouse-over
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Help] Detecting control mouse-over
The problem with this:

quote:
Originally posted by SmokingCookie
code:
Debug.Trace("> Got message \"" + wMessage + "\" with wParam \"" + wParam + "\" and lParam \"" + lParam + "\"");


Is that you aren't defining any messages to watch. And your \ should be \\. Check the code below to get an idea:
code:
function OnEvent_Initialize(MessengerStart) {
      WndMain = MsgPlus.CreateWnd("Windows.xml","WndMain",1);
      WndMain.RegisterMessageNotification(0x200 /* WM_MOUSEMOVE */)
}

function OnWndMainEvent_MessageNotification(PlusWnd,wMessage,wParam,lParam) {
    switch(nMessage){
        case 0x200 /* WM_MOUSEMOVE */:
            // do stuff here
            break;
    }
}


This post was edited on 07-17-2008 at 02:06 PM by matty.
07-10-2008 01:24 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Help] Detecting control mouse-over - by SmokingCookie on 07-09-2008 at 05:19 PM
RE: [Help] Detecting control mouse-over - by matty on 07-09-2008 at 05:32 PM
RE: [Help] Detecting control mouse-over - by SmokingCookie on 07-09-2008 at 05:33 PM
RE: [Help] Detecting control mouse-over - by matty on 07-10-2008 at 01:24 PM
RE: [Help] Detecting control mouse-over - by SmokingCookie on 07-10-2008 at 02:48 PM
RE: [Help] Detecting control mouse-over - by matty on 07-10-2008 at 05:15 PM
RE: [Help] Detecting control mouse-over - by SmokingCookie on 07-10-2008 at 05:20 PM
RE: [Help] Detecting control mouse-over - by Jana. on 07-21-2008 at 09:10 AM
RE: [Help] Detecting control mouse-over - by CookieRevised on 07-21-2008 at 12:20 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