this should be pretty simple.
Declare PtrSafe Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long
I was capturing the mouse position with GetCursorPos, and I noticed that it would always treat the y value as zero.
So I put in manual coordinates, and it still does the...