I know there are similar questions, but those are about the Keyboard Controller and I need the mouse Controller.
So I have a program, where I need to hold down lmb for a certain amount of time. I've tried this:
mouse.press(Button.left)
time.sleep(t)
mouse.release(Button.left)
But for some reason it presses the mouse once instead of holding for t
seconds.
So is there a way to do this? If there is, I'd like to see the implementation.