How do I create hotkey to suspend AutoHotkey?
Also I got autohotkeys to work on vista. Installed regularly and then right clicked on autohotkey.exe and clicked on option: run as administrator.
Thanks for all the suggestions. Autohotkey rocks!
I would like to suspend and un-suspend with crtl+alt+F12
Tested and the following works for me flawlessly:
^!F12::Suspend, [color=red]Toggle[/color]
Maybe you should try a key other than F12 ?
printscreen:: suspend ... return
was not the same as:
printscreen::suspend ... return
I don't know if this could be part of your issue or not.
I would like to suspend and un-suspend with crtl+alt+F12
Tested and the following works for me flawlessly:^!F12::Suspend, [color=red]Toggle[/color]
Maybe you should try a key other than F12 ?
I was unable to get F12 to work anytime shift (!) was used.
graybirder, are you sure you are using Suspend in the same script which contains the hotkeys you want to suspend and reloading said script each time you modify it?
in my script, i just wrote the code at the very end (last lines) :
#p::Pause
and that's fine !
(before that, I just tried any solutions found on the web)
Yes that is the script that I am running. I tried before and tried again just now. Adding Pause::Suspend or Pause::Pause does nothing. It could be my clipboard substitute "arsp" interferes. Although, my Kennington mouse interferes with a couple of the programs I listed above. I am not willing to delete the softwares to see which one is causing the problem. It a fine tuning between them to make them all work together. autohotkeys works, just have to suspend with mouse on tray icon. Thanks again.
NumPad0:: Click 486, 119 Numpad1:: Click 228, 331 Numpad2:: Click 493, 325 Numpad3:: Click 762, 316 Numpad4:: Click 254, 242 Numpad5:: Click 535, 24 Numpad6:: Click 762, 231 Numpad7:: Click 240, 139 Numpad8:: Click 501, 148 Numpad9:: Click 755, 138 F10:: SuspendBe sure to place the suspend command at the end of the code
why?Be sure to place the suspend command at the end of the code
http://www.autohotke...=35517&start=15 (last script, page 2)
Is there a solution to suspend or pause?