saucepleez / taskt

taskt (pronounced 'tasked' and formely sharpRPA) is free and open-source robotic process automation (rpa) built in C# powered by the .NET Framework
http://www.taskt.net/
1.06k stars 346 forks source link

Image Recognition Y Offset #290

Open davisna opened 2 years ago

davisna commented 2 years ago

The offset is not working as expected. Y seems to not effect the offset. Reviewing the source code, it appears the X offset is set for both X and Y.

From source code: var mouseMove = new SendMouseMoveCommand { v_XMousePosition = (topLeftX + (v_xOffsetAdjustment)).ToString(), v_YMousePosition = (topLeftY + (v_xOffsetAdjustment)).ToString(), v_MouseClick = v_MouseClick };