batch.scripts
batch.scripts copied to clipboard
DragTo inaccurate
I just modified the following lines inside the DragMouseTo funcion:
replaced
mouseInput.mkhi.mi.dx = x; mouseInput.mkhi.mi.dy = y;
for
mouseInput.mkhi.mi.dx = CalculateAbsoluteCoordinateX(x); mouseInput.mkhi.mi.dy = CalculateAbsoluteCoordinateY(y);
And now works correctly
@Fike7 - thanks! I'll check this tomorrow.