An open API service indexing awesome lists of open source software.

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!

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"
}
}
}
```