AutoHotkey Community

It is currently May 27th, 2012, 1:00 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
PostPosted: December 31st, 2009, 7:46 pm 
Offline

Joined: December 31st, 2009, 7:37 pm
Posts: 2
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!!


Report this post
Top
 Profile  
Reply with quote  
PostPosted: December 31st, 2009, 9:09 pm 
Offline

Joined: March 16th, 2008, 6:48 pm
Posts: 161
Location: Brooklyn
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 '.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 31st, 2009, 9:14 pm 
Offline

Joined: November 28th, 2009, 4:45 am
Posts: 3089
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 2nd, 2010, 3:38 pm 
Offline

Joined: December 31st, 2009, 7:37 pm
Posts: 2
thank u very much! its working beautifully :))


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Leef_me, WillTroll, XstatyK, Yahoo [Bot] and 32 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group