https://github.com/jestxfot/autohotkey
Having trouble understanding the intricacies of AutoHotKey v2? We're here to help! Ask questions and help others!
https://github.com/jestxfot/autohotkey
autohotkey autohotkey-script autohotkey-scripts autohotkey-v2 autohotkeys autohotkeys-scripts
Last synced: 3 months ago
JSON representation
Having trouble understanding the intricacies of AutoHotKey v2? We're here to help! Ask questions and help others!
- Host: GitHub
- URL: https://github.com/jestxfot/autohotkey
- Owner: jestxfot
- Created: 2023-01-07T14:07:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-12T23:44:07.000Z (almost 2 years ago)
- Last Synced: 2026-03-04T12:26:01.313Z (3 months ago)
- Topics: autohotkey, autohotkey-script, autohotkey-scripts, autohotkey-v2, autohotkeys, autohotkeys-scripts
- Language: AutoHotkey
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Alternative
https://alternativeto.net/software/espanso/
PhraseExpress
### Replacing words with a line (including quotation marks!)
```autohotkey
:*:WORD1:: {
if WinActive("ahk_exe NAMEAPPS.exe") {
Send 'STRING "WORD" STRING MORE'
}
else {
Send "WORD1"
}
}
```
### Running programs (shift + alt)
```autohotkey
!+a:: {
Run "PATH APPS"
}
```
### 3 or more hotkeys (ctrl + b + r + o)
```autohotkey
Ctrl & o:: {
if GetKeyState("r") {
if GetKeyState("b") {
MsgBox "Hotkey activated"
}
}
}
```