AutoHotkey

less than 1 minute read

Description:

So I downloaded a game from Steam the other day and it was driving me crazy that the game kept kicking me out do to certain keyboard combos. I downloaded AutoHotkey and added it to my QuickCliq setup so I can then launch before I start gaming.

To Resolve:

  1. AutoHotkey files are as simple is creating a file with the extension of .ahk.

  2. Here is the one I created for when I’m gaming:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    
    ; Disable Alt+Tab
    !Tab::Return
    
    ; Disable Windows Key + Tab
    #Tab::Return
    
    ; Disable Left Windows Key
    LWin::Return
    
    ; Disable Right Windows Key
    RWin::Return
    
    ; disable ALT+F4
    !F4:: return
    
    ; disable ALT+ESC
    !Escape:: return
    
    ; disable CTRL+ESC
    ^Escape:: return
    
    ; disable ALT+Q
    !q:: return
    

Comments