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 

Will autohotkey let me assign some keys for å,æ and ø

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





PostPosted: Sat Sep 27, 2008 5:31 pm    Post subject: Will autohotkey let me assign some keys for å,æ and ø Reply with quote

I'm using a US keyboard which of course doesn't have å,æ, and ø keys.

How would I get autohotkey to remap say F10, F11 and F12 respectively to each of these letters?

Advice greatly appreciated.
Back to top
SKAN



Joined: 26 Dec 2005
Posts: 8688

PostPosted: Sat Sep 27, 2008 8:48 pm    Post subject: Reply with quote

Code:
F10::å
F11::æ
F12::ø

_________________
URLGet - Internet Explorer based Downloader
Back to top
View user's profile Send private message Send e-mail
Carlol



Joined: 14 Aug 2006
Posts: 163
Location: CPH

PostPosted: Sun Sep 28, 2008 4:29 pm    Post subject: Reply with quote

You could also consider remapping like this:

Code:
[::å
'::ø
$`;::æ


Razz
Back to top
View user's profile Send private message
Carlol



Joined: 14 Aug 2006
Posts: 163
Location: CPH

PostPosted: Sun Sep 28, 2008 4:41 pm    Post subject: Reply with quote

Or something like this:

Code:
:R*?:jjp::ø


meaning you type jjp and get ø

Smile
Back to top
View user's profile Send private message
garry



Joined: 19 Apr 2005
Posts: 2212
Location: switzerland

PostPosted: Sun Sep 28, 2008 7:27 pm    Post subject: Reply with quote

thank you all
an other example, send to text
Code:
;run,charmap
;return

e::
transform,S,chr,230
sendinput,%S%
return

a::
transform,S,chr,229
sendinput,%S%
return

o::
transform,S,chr,248
sendinput,%S%
return
Back to top
View user's profile Send private message
gizmo1990
Guest





PostPosted: Tue Sep 30, 2008 3:20 pm    Post subject: Reply with quote

Thanks guys that's really great!

Is there a way I would be able to set the key up so that I could do a Capital letter by pressing SHIFT and the corresponding remapped key?

So if I had å mapped to F1 I could just press SHIFT+F1 and get Å?
Back to top
lw
Guest





PostPosted: Tue Sep 30, 2008 3:28 pm    Post subject: Reply with quote

Code:
+F10::å
Back to top
totalmig



Joined: 22 Jul 2008
Posts: 151

PostPosted: Tue Sep 30, 2008 4:09 pm    Post subject: Reply with quote

lw, i think you meant:

Code:

+F10::Å


"+" represents shifts.
Back to top
View user's profile Send private message
Gertlex



Joined: 29 Oct 2006
Posts: 39
Location: A2 MI

PostPosted: Wed Oct 01, 2008 7:49 pm    Post subject: Reply with quote

Here's what i do for the additional letters of the german alphabet (and a few other random chars):

Code:
:c?*:uuU::Ü
:c?*:ooO::Ö
:c?*:aaA::Ä
:c?*:sS::ß
:c?*:oO::ö
:c?*:aA::ä
:c?*:uU::ü
:c?*:eE::é
:c?*:_-::–
:?*:*?*::º¿º
:?*:+or-::±
:c?*:~G::•G
:c?*:~E::•E
:c?*:~R::•R


So you could easily do:

Code:

:c?*:aaA::Å
:c?*:aA::å
:c?*:aaE::Æ
:c?*:aE::æ
:c?*:ooO::Ø
:c?*:oO::ø


When you actually need to type that sequence of regular letters, just do o O and delete the space. (It's not efficient, but it's an uncommon occurence)

Note also that the hotstring for ooO has to come before oO.
Back to top
View user's profile Send private message AIM Address
n-l-i-d
Guest





PostPosted: Wed Oct 01, 2008 9:01 pm    Post subject: Reply with quote

Here is a nice script (one of many) that conveniently handles accent characters: AX : Full application for accents.

Browse the Scripts & Functions section of the Forum, or use the seach links mentioned below, it's worth it, you are not the first... Smile

HTH
________________________________________________________
New here? Please, before you post...
1. Read the tutorial and try the examples. -> 2. Take a look at the command list to get an idea of what you could do. -> 3. Create your script. Consult the documentation and the FAQ if you get stuck. -> 4. Search the forum if you need help or examples, method 1 (forum), method 2 (site), method 3 (Google). -> 5. Post your code on the forum in the "Ask for Help" section if you still run into problems (but read this first). -> 6. There is more AHK on autohotkey.net and the Wiki and there is an AHK IRC chat.
Back to top
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