How to send Key combo

How can be this controlled in that simulator? Can HIDmacros be used with this application?
Post Reply
BuxZED
Posts: 2
Joined: 28 Aug 2016, 12:35

How to send Key combo

Post by BuxZED » 28 Aug 2016, 12:47

new user here and I feel like I'm missing something.

how can send key combo like CTRL+SHIFT+F13 LuaMacro?

Code: Select all

  elseif (button == string.byte('A')) then lmc_send_keys ('{F13} +{F2}')   
or a variation like that?


I can't find much info on the syntax and hours of trial and error have led me no where

admin
Site Admin
Posts: 735
Joined: 01 Nov 2010, 13:00
Location: Prague, Czech republic
Contact:

Re: How to send Key combo

Post by admin » 29 Aug 2016, 08:07

I know I need to improve this part of documentation. There's readme attached to HidMacros - rtf file describing this syntax.
AFAIR you shoud try something like "^+{F13}"
Petr Medek
LUAmacros author

BuxZED
Posts: 2
Joined: 28 Aug 2016, 12:35

Re: How to send Key combo

Post by BuxZED » 29 Aug 2016, 14:20

admin wrote:I know I need to improve this part of documentation. There's readme attached to HidMacros - rtf file describing this syntax.
AFAIR you shoud try something like "^+{F13}"
modified to

Code: Select all

 elseif (button == string.byte('A')) then lmc_send_keys ('^+{F13}')
no luck. still outputs F13

where do I find this readme?

Kind Regards,
Buxzed

Post Reply