1

I use a laptop with Italian keyboard, but I need the tilde ~ and the backtick ` characters, which my keyboard is not endowed with.

I got to know AutoHotKeys and it seems to fit. But I could not find a map to script. E.g., what are the key codes relative to the AltGr.

Briefly, I want to do the following:

AltGr + ' = `

AltGr + ì = ~

matte
  • 38

1 Answers1

1

According to the docs: <^>! stands for AltGr so I do beleive you could use a script something like this:

<^>!':: ;send backtick
    SendInput, `` ; <- backtick is also the escape char, so we need to escape it first
    return

<^>!ì:: ;send backtick
    SendInput, ~
    return

I dont have AHK on my pc so couldn't try it, so you might have to tweak around a bit for it to work.

Paul
  • 126