| View previous topic :: View next topic |
| Author |
Message |
davidcphindex Guest
|
Posted: Fri Jan 18, 2008 5:00 pm Post subject: Disabling ALL hotkeys |
|
|
Hi guys,
I'd like to know what would be the best way implement a hot key that would suspend all hotkeys used in a script?
Thanks in advance...
david |
|
| Back to top |
|
 |
Gakusei
Joined: 09 Jan 2008 Posts: 15
|
Posted: Fri Jan 18, 2008 5:12 pm Post subject: |
|
|
This is what i use.
| Code: | ; F10
; Activates Hotkeys (if turned off)
F10::
suspend off
return
; F11
; Deactivates Hotkeys
F11::
suspend on
return |
|
|
| Back to top |
|
 |
davidcphindex Guest
|
Posted: Fri Jan 18, 2008 5:16 pm Post subject: |
|
|
Cool, I'll try that.... thanks.
david |
|
| Back to top |
|
 |
|