InputBot icon indicating copy to clipboard operation
InputBot copied to clipboard

Support for multiple keys pressed at the same time.

Open Mach1212 opened this issue 2 years ago • 2 comments

Mach1212 avatar Oct 24 '21 01:10 Mach1212

I haven't used this lib, but it already has it, right?

LShiftKey.press();
WKey.press();
sleep(Duration::from_millis(50)); // Now Shift+W is pressed simultaneously for 50 ms
WKey.release();
LShiftKey.release();

Megamannen avatar May 05 '22 13:05 Megamannen

I haven't used this lib, but it already has it, right?

LShiftKey.press();
WKey.press();
sleep(Duration::from_millis(50)); // Now Shift+W is pressed simultaneously for 50 ms
WKey.release();
LShiftKey.release();

I think he means checking the condition of multiple keys pressed at the same time, instead of simulating the inputs

seyoatda avatar Jul 25 '22 06:07 seyoatda