| View previous topic :: View next topic |
| Author |
Message |
Josh Guest
|
Posted: Thu Nov 30, 2006 7:26 pm Post subject: How do I make the windows key trigger ctrl alt shift? |
|
|
How do I make the windows key trigger, all at the same time, "ctrl alt shift"?
I have tried
#::Lctrl
#::Lalt
#::Lshift
------------------
#::Lctrl & Lalt & Lshift
----------------
Lwin::!^+
-------------------
None of them work successfully. Any suggestions? |
|
| Back to top |
|
 |
Terrapin
Joined: 15 Aug 2005 Posts: 107 Location: North Carolina
|
Posted: Thu Nov 30, 2006 9:27 pm Post subject: |
|
|
| Code: | LWin::
Send, {LCtrl Down}{LAlt Down}{LShift Down}
return |
There may well be a shorter form of this. You will need to use {LCtrl Up), etc, when you want them to be released. Also, there is no Win, you must specify LWin or RWin.
It looks as if you're trying to use hotkey modifiers {+#!^) rather than the key names, as shown on "Key List" in the manual/help file.
Good Luck |
|
| Back to top |
|
 |
POINTS
Joined: 18 Jan 2006 Posts: 284
|
Posted: Thu Nov 30, 2006 9:54 pm Post subject: Up too |
|
|
You'll need the up command too.
| Quote: | The word UP may follow the name of a hotkey to cause the hotkey to fire upon release of the key rather than when the key is pressed down. The following example remaps LWin to become LControl:
*LWin::Send {LControl Down}
*LWin Up::Send {LControl Up} |
LWin::Send, {LCtrl Down}{LAlt Down}{LShift Down}
LWin UP::Send, {LCtrl Up}{LAlt Up}{LShift Up} _________________ My AutoHotkey Program for Warcraft III:
Warkeys
http://warkeys.sourceforge.net/
Remap your hotkeys
Healthbars always on
Remap inventory |
|
| Back to top |
|
 |
|