I am sorry for such a dumb simple question but I am using a soundboard program and need to be able to press 3 or more keys at once, I do not need the shift, alt or ctrl keys but I am having trouble understanding what to put in the script window to have it press all the keys at once.
Kinda wish the GUI had a simple check box flag near send keyboard sequence to have it press all or not.
3 keys at once
Re: 3 keys at once
In LuaMacros you can achieve that with lmc_send_input.
If you refer to gui you probably mean Hidmacros but you can't do such thing there.
If you refer to gui you probably mean Hidmacros but you can't do such thing there.
Petr Medek
LUAmacros author
LUAmacros author
-
- Posts: 3
- Joined: 29 Apr 2020, 00:41
Re: 3 keys at once
I kinda did get 2 or 3 keys to work in hidemacro,
Code: Select all
<Sequence>%'+b'</Sequence>
I'm not sure of the syntax
(button == string.byte('a, b, c')) then lmc_send_keys ('F13')
Either letters or the key numbers work, not sure if commas work or brackets where needed for all at once, I fiddled around for a couple days got original key press to stop working with the replacement key doing fine I assume blocking the original press is via autohotkey, I got kinda lsot LOL.
Thanks for any help
-
- Posts: 3
- Joined: 29 Apr 2020, 00:41
Re: 3 keys at once
Edit
ah never mind rewasd is doing all this(multiple key presses) and more! Did not think it would do it but it dose 0-o
ah never mind rewasd is doing all this(multiple key presses) and more! Did not think it would do it but it dose 0-o