Skip to content
⌘ NSIS Forum Archive

How to detect mousemove with WndSubclass plugin?

3 posts

azcn2503#

How to detect mousemove with WndSubclass plugin?

Hi guys,

I have read through the example code for WndSubclass, but one question that screams out to me is: what are the potential values that $2 could be? I know that it can be ${WM_SETFOCUS} and ${WM_KILLFOCUS} from this page, but what else can it be?

I want to detect mouse movement, but I would like to know what the other values could be. I couldn't find any other documentation other than in the example.

Many thanks.
Anders#
Any window message, the parameters are in the same order as a normal WNDPROC. (You basically need to know win32 programming to use this plugin)
azcn2503#
OK, thanks. I found what I needed from here: http://ahkscript.org/docs/misc/SendMessageList.htm