jestxfot / autohotkey

Having trouble understanding the intricacies of AutoHotKey v2? We're here to help! Ask questions and help others!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alternative

https://alternativeto.net/software/espanso/

PhraseExpress

Replacing words with a line (including quotation marks!)

:*:WORD1:: {
    if WinActive("ahk_exe NAMEAPPS.exe") {
        Send 'STRING "WORD" STRING MORE'
    }
    else {
        Send "WORD1"
    }
}

Running programs (shift + alt)

!+a:: {
Run "PATH APPS"
}

3 or more hotkeys (ctrl + b + r + o)

Ctrl & o:: {
    if GetKeyState("r")  {
        if GetKeyState("b")  {
        MsgBox "Hotkey activated"
        }
    }
}

About

Having trouble understanding the intricacies of AutoHotKey v2? We're here to help! Ask questions and help others!


Languages

Language:AutoHotkey 72.3%Language:Batchfile 27.7%