Been playing with remotekcwin7.ahk but many functions do not work.
left/right ir key to left/right cusor movment is ok.
BUT
up/down only causes cusor to jump to top of screen.
Down::
If Mode = 2
MouseMoveWin7(0, 10, 0, "R") ; Move cursor downward
Else
Send {Down}
Return
Calling:
MouseMoveWin7(x, y, speed, relative) ; Windows 7 replacement for mouse move
{
; Note: Speed is not implemented for this function
if (relative = "R")
{
; MouseGetPos, xpos, ypos
VarSetCapacity(MyStruct, 8, 0)
DllCall("GetCursorPos", UInt, &MyStruct)
xpos := NumGet(MyStruct, 0)
ypos := NumGet(MyStruct, 4)
DllCall("SetCursorPos", int, xpos+x, int, ypos+y)
}
Else
{
DllCall("SetCursorPos", int, x, int, y)
}
}
Return
Anybody see error???
Thanks,
Ray