Search found 3 matches

by zqckfair
22 Mar 2020, 23:11
Forum: HOW-TOs and documentation
Topic: Sending Keys
Replies: 2
Views: 4640

Re: Sending Keys

You have 2 options: 1) use LMC as usual which means once keyboard handler is hooked all original keys are blocked. So you would have to use lmc_send_input or send keys to send original key again 2) recently I have added a parameter to turn the low level keyboard hook (which block original keys) off...
by zqckfair
18 Apr 2016, 13:16
Forum: HOW-TOs and documentation
Topic: Press F12 and then type LOL
Replies: 3
Views: 4760

Re: Press F12 and then type LOL

Yes, I have, but I still don't know how to keep a key down, while in the same time : typing something else. In some scripting language, we can do that. The question is : is it possible to hold down a key with luamacros ? Exemple : elseif (button == string.byte('H')) then lmc_send_keys('{F10 Down}Hel...
by zqckfair
18 Apr 2016, 02:31
Forum: HOW-TOs and documentation
Topic: Press F12 and then type LOL
Replies: 3
Views: 4760

Press F12 and then type LOL

Hello

How can I type something while pressing another key ?
I'm using LuaMacros.

Is it possible with something like lmc_send_keys ("{F12 down}LOL{F12 up}") ?