https://github.com/spences10/autohotkey
https://github.com/spences10/autohotkey
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/spences10/autohotkey
- Owner: spences10
- Created: 2021-10-09T14:34:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-10T10:24:57.000Z (about 4 years ago)
- Last Synced: 2025-02-15T09:36:23.702Z (9 months ago)
- Language: AutoHotkey
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - spences10/autohotkey - (AutoHotkey)
README
# AutoHotkey Scripts
This is my list of scripts for AutoHotKey I use
I have created a shortcut for this file and added it to my startup
folder. You can open yours from the run dialogue (Win+r) and adding
in:
```bash
shell:startup
```
Or on Windows 11 I've used the following:
```
%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup
```
## Key combinations
Because of the limitations of Loupedeck for adding key combinations
that don't use a modifier and the limitations of Autohotkey not being
able to use more than two modifiers I'm a bit limited on how to use
them.
Here's some examples of how to do key combinations:
```ahk
; key combinations
Numpad0 & Numpad1::MsgBox You pressed Numpad1 while holding down Numpad0.
Numpad0 & Numpad2::Run Notepad
Numpad0::Send {Numpad0} ; This means the numpad can be used with combos 👆
```