how to send special characters (braces, brackets...)?

How can be this controlled in that simulator? Can HIDmacros be used with this application?
Post Reply
mikra
Posts: 1
Joined: 29 Mar 2017, 19:57

how to send special characters (braces, brackets...)?

Post by mikra » 29 Mar 2017, 19:59

How can I send special characters, like braces, brackets, tilde...?
(Surrounding with braces doesn't work.)

smeden.dk
Posts: 1
Joined: 08 Nov 2019, 11:26

Re: how to send special characters (braces, brackets...)?

Post by smeden.dk » 08 Nov 2019, 11:30

I am also searching for a way to send a left brace "{". Can anyone help?

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

Re: how to send special characters (braces, brackets...)?

Post by admin » 10 Nov 2019, 20:32

Hidmacros: I think you can't
Luamacros: use lmc_send_input
Petr Medek
LUAmacros author

LoyalJ
Posts: 1
Joined: 09 Mar 2020, 17:13

Re: how to send special characters (braces, brackets...)?

Post by LoyalJ » 09 Mar 2020, 17:20

Option 1: You just have to put in the brace three times: i.e. {{{.

The first two give you an escaping {. For some reason, though (a bug, maybe?), it eats the next character, so if you put sqroot{{G64}, it'll spit out sqroot{64}. So, the third brace fixes that.

The right brace } is fine unless a non-escaping brace exists.

Option 2 (necessary for parentheses?): Just use the shift function, +. So, on standard keyboards, parentheses are +9 and +0; braces are +[ and +]. You can also get the + key this way: +=. Tilde is +`.

I don't have any trouble with brackets.

Post Reply