stroebjo / autohotkey-windows-mac-keyboard

AutoHotkey Mappings to emulate OSX behaviour with a Mac keyboard on Windows
481 stars 143 forks source link

AltGR shortcuts dont work #20

Open montella1507 opened 2 years ago

montella1507 commented 2 years ago

Hi, i have keyboard and layout with AltGR, however none of shortuts with ALTGR work..

Example of not-working mappings: ` ; -------------------------------------------------------------- ; OS X keyboard mappings for special chars ; --------------------------------------------------------------

; Map Alt + L to @ !l::SendInput {@}

; Map Alt + N to \ +!7::SendInput {}

; Map Alt + N to © !g::SendInput {©}

; Map Alt + o to ø !o::SendInput {ø}

; Map Alt + 5 to [ !5::SendInput {[}

; Map Alt + 6 to ] !6::SendInput {]}

; Map Alt + E to € !e::SendInput {€}

; Map Alt + - to – !-::SendInput {–}

; Map Alt + 8 to { !8::SendInput {{}

; Map Alt + 9 to } !9::SendInput {}}

; Map Alt + - to ± !+::SendInput {±}

; Map Alt + R to ® !r::SendInput {®}

; Map Alt + N to | !7::SendInput {|}

; Map Alt + W to ∑ !w::SendInput {∑}

; Map Alt + N to ~ !n::SendInput {~}

; Map Alt + 3 to # !3::SendInput {#}

`

rin67630 commented 2 years ago

I could get these two to work: ; Map Alt + L to @ !l::<^>!q ; Map Alt + N to ~ !n::SendInput {~}

but the other don't work. Why??