| View previous topic :: View next topic |
| Author |
Message |
LeT
Joined: 31 Dec 2009 Posts: 2
|
Posted: Thu Dec 31, 2009 6:46 pm Post subject: how do i remap ";" and how do i solve hotkey confl |
|
|
im trying to get a german keybord out of my english one...
'::ä
return
+'::Ä
return
+;::ö <-------- id like to change it without shift,
return
^;::Ö <---------and get a capital one with shift...
return
[::ü
return
+[::Ü
return
+#::' <------conflict because " ' " is supposed to send "ä"...
return
+.:::
return
!s::ß
return
thank u and a happy new year!! |
|
| Back to top |
|
 |
Sergio
Joined: 16 Mar 2008 Posts: 160 Location: Brooklyn
|
Posted: Thu Dec 31, 2009 8:09 pm Post subject: Re: how do i remap ";" and how do i solve hotkey c |
|
|
| LeT wrote: | +;::ö <-------- id like to change it without shift,
return
^;::Ö <---------and get a capital one with shift...
return |
The plus symbol (+) represents shift. If you remove the plus symbol you won't need to use shift. You've done it with CTRL (^) on the second example.
| LeT wrote: | +#::' <------conflict because " ' " is supposed to send "ä"...
return |
There is in fact a conflict, but there's not much you can do other than remapping '. _________________
 |
|
| Back to top |
|
 |
None
Joined: 28 Nov 2009 Posts: 3086
|
Posted: Thu Dec 31, 2009 8:14 pm Post subject: |
|
|
| Code: | $*':: ;$ to require real key press to trigger * to allow modifiers
If GetKeyState("Shift")
Send Ä
Else
Send ä
Return
`;::Send ö ;`to escape the key so works
return
$+;::Send Ö
return
[::ü
return
+[::Ü
return
+#::Send '
return
+.::send +;
return
!s::ß
return |
Had some trouble with Ä and ä but this should work. |
|
| Back to top |
|
 |
LeT
Joined: 31 Dec 2009 Posts: 2
|
Posted: Sat Jan 02, 2010 2:38 pm Post subject: |
|
|
thank u very much! its working beautifully ) |
|
| Back to top |
|
 |
|