| View previous topic :: View next topic |
| What's the best way to type "ä"? |
| Press "a" four times. |
|
0% |
[ 0 ] |
| Press "q" twice. |
|
0% |
[ 0 ] |
| Type "`a" and pick from a menu. |
|
33% |
[ 1 ] |
| Type "a:". |
|
0% |
[ 0 ] |
| Press a hotkey and then type "a:". |
|
0% |
[ 0 ] |
| Press Ctrl+: and then "a". |
|
0% |
[ 0 ] |
| Press a and then Ctrl+: |
|
0% |
[ 0 ] |
| Press Win+Ctrl+A. |
|
0% |
[ 0 ] |
| Other (please explain). |
|
66% |
[ 2 ] |
|
| Total Votes : 3 |
|
| Author |
Message |
ManaUser
Joined: 24 May 2007 Posts: 900
|
Posted: Tue Feb 26, 2008 3:18 am Post subject: Accent scripts etc. |
|
|
| I've seen alot of different accent scripts recently, and they all work different ways. So I thought it would be interesting to know which way people like best. I would especially like to hear your thoughts if you actually use something like this regularly. It doesn't necessarily have to be an AutoHotkey script either, I'm just wondering what implementation is most convenient for people. |
|
| Back to top |
|
 |
Laszlo
Joined: 14 Feb 2005 Posts: 3943 Location: Pittsburgh
|
Posted: Tue Feb 26, 2008 4:47 am Post subject: |
|
|
It depends on, how often do you need ä. After trying many different ideas I settled to the following three methods (different method for different characters):
1. Pressing ScrollLock changes the keyboard layout, so the numbers raw contains the most often used diacritics. This is the preferred method if you need “ä” very often.
2. Define hotstrings, like | Code: | :c*?:;;;a::ä
:c*?:;;a::á | I chose “;” prefix, because it does not need the shift key, and it almost never typed more than once in a raw. This is the best for moderately frequent use.
3. Press “a” and then twice the CapsLock. (The first CapsLock changes “a” to “á”, the second one changes “á” to “ä”.) I use this method for less often needed characters, which form rings. You see them changing on screen. Just keep hitting CapsLock, until the desired character appears in your document, related to the letter “a”. It can be a→á→ä→α→a. |
|
| Back to top |
|
 |
|