![]() |
How to create a keyboard shortcut with ShortKeeper using AutoHotkey code - Printable Version +- Cedeq Community Forum (https://cedeq.com/forums) +-- Forum: General (https://cedeq.com/forums/forumdisplay.php?fid=1) +--- Forum: Keyboard shortcuts with AutoHotkey code (https://cedeq.com/forums/forumdisplay.php?fid=4) +--- Thread: How to create a keyboard shortcut with ShortKeeper using AutoHotkey code (/showthread.php?tid=29) |
How to create a keyboard shortcut with ShortKeeper using AutoHotkey code - denilama - 03-21-2018 This short tutorial will show you how to create a keyboard shortcut using AutoHotkey code in ShortKeeper. Note: ShortKeeper includes AutoHotkey (as a shortcut processor). At the end of this tutorial, you could close ShortKeeper, and AutoHotkey will continue processing your keyboard shortcut(s) in the background. ShortKeeper is only needed to add/modify/delete shortcuts, manually start/stop AutoHotkey, and set certain operating options. ![]()
That’s it! Pressing the defined hotkey will trigger your shortcut (if AutoHotkey is running). If AutoHotkey is not running, just start it with the Start/Stop AutoHotkey button. It is possible to set an option (in the "Option" tab) to start AutoHotkey automatically at Windows start-up. There is also an option to start AutoHotkey automatically when ShortKeeper starts. A small hand icon in the system tray, usually at the bottom right of the screen, will indicate that AutoHotkey is active. RE: How to create a keyboard shortcut with ShortKeeper using AutoHotkey code - mwazeeeeer - 05-18-2019 bro ,, do u have a ready script for enable/disable the internet connection ? RE: How to create a keyboard shortcut with ShortKeeper using AutoHotkey code - denilama - 05-20-2019 A way to disable the Internet connection with AutoHotkey: Run, *RunAs %ComSpec% /c netsh interface set interface name="Local Area Connection" admin=disabled,, Hide A way to enable the Internet connection with AutoHotkey: Run, *RunAs %ComSpec% /c netsh interface set interface name="Local Area Connection" admin=enabled,, Hide Tests done with Windows 7. "Local Area Connection" needs to be your adapter connection's name. |