AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

how do i remap ";" and how do i solve hotkey confl

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
LeT



Joined: 31 Dec 2009
Posts: 2

PostPosted: Thu Dec 31, 2009 6:46 pm    Post subject: how do i remap ";" and how do i solve hotkey confl Reply with quote

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
View user's profile Send private message
Sergio



Joined: 16 Mar 2008
Posts: 160
Location: Brooklyn

PostPosted: Thu Dec 31, 2009 8:09 pm    Post subject: Re: how do i remap ";" and how do i solve hotkey c Reply with quote

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
View user's profile Send private message
None



Joined: 28 Nov 2009
Posts: 3086

PostPosted: Thu Dec 31, 2009 8:14 pm    Post subject: Reply with quote

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
View user's profile Send private message
LeT



Joined: 31 Dec 2009
Posts: 2

PostPosted: Sat Jan 02, 2010 2:38 pm    Post subject: Reply with quote

thank u very much! its working beautifully Smile)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group