| View previous topic :: View next topic |
| Author |
Message |
gizmo1990 Guest
|
Posted: Sat Sep 27, 2008 5:31 pm Post subject: Will autohotkey let me assign some keys for å,æ and ø |
|
|
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
|
Posted: Sat Sep 27, 2008 8:48 pm Post subject: |
|
|
| Code: | F10::å
F11::æ
F12::ø |
_________________ URLGet - Internet Explorer based Downloader |
|
| Back to top |
|
 |
Carlol
Joined: 14 Aug 2006 Posts: 163 Location: CPH
|
Posted: Sun Sep 28, 2008 4:29 pm Post subject: |
|
|
You could also consider remapping like this:
 |
|
| Back to top |
|
 |
Carlol
Joined: 14 Aug 2006 Posts: 163 Location: CPH
|
Posted: Sun Sep 28, 2008 4:41 pm Post subject: |
|
|
Or something like this:
meaning you type jjp and get ø
 |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 2212 Location: switzerland
|
Posted: Sun Sep 28, 2008 7:27 pm Post subject: |
|
|
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 |
|
 |
gizmo1990 Guest
|
Posted: Tue Sep 30, 2008 3:20 pm Post subject: |
|
|
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
|
Posted: Tue Sep 30, 2008 3:28 pm Post subject: |
|
|
|
|
| Back to top |
|
 |
totalmig
Joined: 22 Jul 2008 Posts: 151
|
Posted: Tue Sep 30, 2008 4:09 pm Post subject: |
|
|
lw, i think you meant:
"+" represents shifts. |
|
| Back to top |
|
 |
Gertlex
Joined: 29 Oct 2006 Posts: 39 Location: A2 MI
|
Posted: Wed Oct 01, 2008 7:49 pm Post subject: |
|
|
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 |
|
 |
n-l-i-d Guest
|
Posted: Wed Oct 01, 2008 9:01 pm Post subject: |
|
|
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...
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 |
|
 |
|