| Author |
Message |
Topic: Remapping modifiers to Qwerty on a Dvorak keyboard |
Ted Striker
Replies: 9
Views: 8071
|
Forum: Scripts & Functions Posted: Thu Aug 19, 2010 4:54 am Subject: Remapping modifiers to Qwerty on a Dvorak keyboard |
| There's one problem with using any script to change QWERTY to Dvorak: AHK hotstrings are hard to use as intended. AHK reads the original QWERTY letters both for the hotstring and the trigger character ... |
Topic: problem: key remap (QWERTY > Dvorak) and hotstrings |
Ted Striker
Replies: 15
Views: 1470
|
Forum: Ask for Help Posted: Wed Aug 18, 2010 1:28 am Subject: problem: key remap (QWERTY > Dvorak) and hotstrings |
I have an AHK script remapping my keyboard to Dvorak, and I wrote this to do something like hotstrings:
Ins::
cliptemp:=clipboard ; Save orginal clipboard contents
Send, ^ ... |
Topic: Remapping modifiers to Qwerty on a Dvorak keyboard |
Ted Striker
Replies: 9
Views: 8071
|
Forum: Scripts & Functions Posted: Wed Aug 18, 2010 12:37 am Subject: Alternate remap script |
| I've been using the script Igor posted for a while, but lately I've noticed a bug: after triggering a suspend (with Scroll lock, Win, etc.), my hotstrings (in another script!) stopped working until th ... |
Topic: Suppress Windows Start Menu |
Ted Striker
Replies: 6
Views: 359
|
Forum: Ask for Help Posted: Sun Aug 15, 2010 7:21 pm Subject: Suppress Windows Start Menu |
^Escape also opens the start menu
Thanks, but opening the start menu wasn't my problem. I was trying to use the windows key to open the start menu in some cases, send Alt+F2 in others, and still be ... |
Topic: Suppress Windows Start Menu |
Ted Striker
Replies: 6
Views: 359
|
Forum: Ask for Help Posted: Sun Aug 15, 2010 5:49 pm Subject: Suppress Windows Start Menu |
Try this way:Hotkey,*a,Off
*a::MsgBox
LWin::
RWin::
Hotkey,*a,On
KeyWait,%A_ThisHotkey%
Hotkey,*a,Off
Return
Still not working with shortcuts, but I appreciate the ... |
Topic: Suppress Windows Start Menu |
Ted Striker
Replies: 6
Views: 359
|
Forum: Ask for Help Posted: Sun Aug 15, 2010 2:47 pm Subject: Suppress Windows Start Menu |
:LWin::Return
RWin::Return
Thanks, but that didn't work. Adding that code prevents windows key shortcuts from working. |
Topic: Suppress Windows Start Menu |
Ted Striker
Replies: 6
Views: 359
|
Forum: Ask for Help Posted: Sat Aug 14, 2010 11:49 pm Subject: Suppress Windows Start Menu |
| I use Windows 7 at home and have gotten used to pressing the winkey to search. The problem is, I spend as much running XP or Linux in VirtualBox. In those contexts I need to press Alt+F2 to get a simi ... |
| |