08-16-2022, 01:32 AM
(08-15-2022, 02:13 PM)bplus Wrote: lc% = _MouseButton(1) ' <<<< Why not _MouseButton(2) ?????
Loop Until lc% = -1
Seems like perfect place to try Right Click in your code, instead of Left Mouse Button
Good catch...thank you.
I simply changed these two lines to this:
rc% = _MouseButton(2)
Loop Until rc% = -1
And it works perfectly! This routine was not set up for any clicking, so the drawing was just hovering with the mouse. The first and only click being a right-click works without issue to exit the loop.
I might not have time in the next day or two but I look forward to sorting it out in the other loop. Cheers.