Closed ObligedTester closed 7 months ago
@ObligedTester - correct, you can only send key combinations at once, you can't add a delay between them. I'll keep this issue open as an enhancement to add & will look at coding that feature.
I see!
That would be great to be able to do this.
Even for such programs as vim, you would be able to have complete commands as macros with this!
Thank you for this reply and update. I will keep an eye for any updates.
Looking at implementing DuckyScript for the macros
Not familiar with that, but let me know if you need any assitance with testing or so!
@ObligedTester - finally got things implemented! A sample command is:
(0x544408, 'World ', [[Keycode.SHIFT, Keycode.W], 2.0, Keycode.O, 1.0, [Keycode.R, Keycode.L], 3.0, Keycode.D]),
Which is a macro that would output:
Wooooorld
This is because the macro is interpreted as:
Let me know if this does or doesn't work!
Hello,
Trying to figure out how to have a macro set to CTRL-K and then a Z.
This is for example for Visual Studio "Zen" Mode. I can only get it to do CTRL-K-Z for example, but i need it to release CTRL-K before sending Z.
Any ideas?