hello everyone,
I want to use numpad instead of my mouse , for this i tried AUTOHOTKEY with this script :
--------------------------
SetBatchLines -1
IncrementValue = 1
MouseDelay = 100
Numpad4::
Numpad6::
Numpad8::
Numpad2::
Loop,
{
If (A_ThisHotkey = "Numpad2")
xVal := 0, yVal := IncrementValue
If (A_ThisHotkey = "Numpad8")
xVal := 0, yVal = -IncrementValue
If (A_ThisHotkey = "Numpad4")
xVal := -IncrementValue, yVal = 0
If (A_ThisHotkey = "Numpad6")
xVal := IncrementValue, yVal = 0
If GetKeyState(A_ThisHotKey, "P")
MouseMove, %xVal%, %yVal%, %MouseDelay%, R
Else
Break
}
return
Esc::ExitApp
--------------------------
On my deskop no PB but when i want to play to my fps ... BUG!
WHY?
Some one can help me?
thank you