The function _AHK.MouseClick() does not work.
Called like this:
myAHKInstance.MouseClick();
myAHKInstance.MouseClick(_AHK.MouseButton.Left);
It throws a NullReferenceException.
when I called it like:
myAHKInstance.MouseClick((_AHK.MouseButton)2);
it threw an AccessViolationException.
Workaround:
As per the docs all mouse click actions should be usable via a combination of Send and/or Click
The function _AHK.MouseClick() does not work.
Called like this:
myAHKInstance.MouseClick();
myAHKInstance.MouseClick(_AHK.MouseButton.Left);
It throws a NullReferenceException.
when I called it like:
myAHKInstance.MouseClick((_AHK.MouseButton)2);
it threw an AccessViolationException.
Workaround:
As per the docs all mouse click actions should be usable via a combination of Send and/or Click