| View previous topic :: View next topic |
| Author |
Message |
Pyro Guest
|
Posted: Mon Aug 21, 2006 8:14 pm Post subject: Disabling AHK using a global hotkey. |
|
|
| I use ahk to remap hotkeys in DOTA for warcraft 3 so i can put my spell keys closer toogether, unfortunately, this results in very wieird messages when i try to chat so i am wondering if there is a way to disable and enable AHK form warcraft 3 using a hotkey. |
|
| Back to top |
|
 |
Guest
|
Posted: Mon Aug 21, 2006 8:23 pm Post subject: |
|
|
i know that you can bind something to suspend but how do i bind it to toggle, like ^d::suspend
and then when u press it again to resume |
|
| Back to top |
|
 |
silveredge78
Joined: 25 Jul 2006 Posts: 481 Location: Midwest, USA
|
Posted: Mon Aug 21, 2006 10:56 pm Post subject: |
|
|
Look up the Pause command. _________________ SilverEdge78 |
|
| Back to top |
|
 |
MsgBox Guest
|
Posted: Mon Aug 21, 2006 11:26 pm Post subject: |
|
|
Hello Guest
| Quote: | i know that you can bind something to suspend but how do i bind it to toggle, like ^d::suspend
and then when u press it again to resume |
Like this :
| TFManual wrote: | Suspend
--------------------------------------------------------------------------------
Disables or enables all or selected hotkeys.
Suspend [, Mode]
Parameters
Mode On: Suspends all hotkeys except those explained the Remarks section.
Off: Re-enables all hotkeys.
Toggle (default): Changes to the opposite of its previous state (On or Off).
Permit: Does nothing except mark the current subroutine as being exempt from suspension.
|
Or this:
| silveredge78 wrote: | | Look up the Pause command. |
|
|
| Back to top |
|
 |
jtbalogh
Joined: 05 Feb 2006 Posts: 35
|
Posted: Mon Oct 02, 2006 11:47 pm Post subject: |
|
|
I use this because suspending prevented me from using the d-key too.
^d::
Suspend, Permit ; disable all hotkeys, except this one and other permitted ones
Suspend
return |
|
| Back to top |
|
 |
|