I need to simulate mouse move inside of windows under Win 7. Usually i would use SendInput()
. But it can simulate mose moving only at the one window at the time. I need to simulate mouse moving at the multiple windows at the time.
Is this even possible? And how?
PostMessage(hWnd, WM_MOUSEMOVE, ...)
? – Alexander