| View previous topic :: View next topic |
| Author |
Message |
BoBo Guest
|
Posted: Sat Mar 05, 2005 10:09 pm Post subject: Challenge of the week II |
|
|
Maybe someone wants to create something similar with AHK !
[Keyboard Layout Manager]
 |
|
| Back to top |
|
 |
jonny
Joined: 13 Nov 2004 Posts: 3004 Location: Minnesota
|
Posted: Sat Mar 05, 2005 11:14 pm Post subject: |
|
|
| An AHK layout manager would be feasible, but if it was in script form it would greatly suffer from needing the script running full-time. You'd also probably have trouble with other AHK scripts, etc. And during boot time your layout would be whacked. Something better would be a script that simply changes the layout in the registry and EnvUpdates. |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5026 Location: imaginationland
|
Posted: Mon Mar 07, 2005 4:22 am Post subject: |
|
|
Lol the furthest I've got to with this: | Code: | Char_ASC = 0000
Loop, 255
{
Char_ASC += 1
Char_String = {ASC %Char_ASC%}
lstChar = %lstChar% %Char_String%
}
MsgBox, %lstChar% |
Note: I didn't have any plan to gui this and there is an obvious problem there that you could look into yourself if you want to. _________________
RegExReplace("irc.freenode.net/autohotkey", "^(?=(.(?=[\0-r\[]*((?<=\.).))))(?:[c-\x73]{2,8}(\S))+((2)|\b[^\2-]){2}\D++$", "$u3$1$3$4$2") |
|
| Back to top |
|
 |
|