PDF download Download Article PDF download Download Article

AutoHotkey is a free Windows scripting language that allows you to program different actions with various keyboard shortcuts. This wikiHow guide will show you how to install AutoHotkey as well as program a few basic scripts.

Part 1
Part 1 of 5:

Installing AutoHotkey

PDF download Download Article
  1. Go to https://autohotkey.com in a web browser. Using your preferred web browser, go to official AutoHotkey website.
  2. It's the green button in the center of the page.
    Advertisement
  3. It's the blue button at the top of the page. This will start the download of the AutoHotkey installer.
  4. Double-click the installation file you just downloaded to start the installer.
    • By default, all your downloaded files can be found in your Downloads folder.
  5. It's the first option in the AutoHotkey Setup wizard. This will install AutoHotkey on your computer with the default configuration.
    • When it's finished installing you can click "Run AutoHotkey" to launch some of the documentation about AutoHotkey.
  6. Advertisement
Part 2
Part 2 of 5:

Creating a Script

PDF download Download Article
  1. When you right-click on any blank part of your desktop, this opens a drop-down menu.
  2. When you place the mouse cursor over "New" you will see a list of programs you can create a new file for.
  3. This will create a new AutoHotkey script on your desktop. It will have an image of a white page with a red "H" on it.
  4. By default, the new document will be named "NewAutoHotkeyScript.ahk" and it will be highlighted, allowing you type a new name for your script.
    • Be sure not to erase the file extension of ".ahk" at the end. Your file must end with the ".ahk" file extension or else it won't work with AutoHotkey.
  5. This will open a drop-down menu with additional options for the file.
  6. It's the third option from the top. This will launch the AutoHotkey script in Notepad. This is where you will write the programming to create your first AutoHotkey script.
    • There is some code and text already inserted into the first few lines of every new AHK script, you can ignore this and leave it alone for now.
  7. Advertisement
Part 3
Part 3 of 5:

Creating a Hotkey

PDF download Download Article
  1. For example, if you want to assign a command that does something when you press the key combination of Ctrl+E, you would type ^e. Each lowercase letter represents its own key, while special keys have their own symbols:
    • + = Shift
    • ^ = Ctrl
    • ! = Alt
    • # = Win (Windows key)
    • Click here for a complete list of key commands.
  2. Any key or key combination you typed needs to be followed by ::. So in our example, the first line of our code would look like:
      ^e::
      
  3. You'll type the command for what will happen with then hotkey is pressed on the line below the two colons. You can indent the line by pressing "Tab" or by typing several spaces
    • You don't have to indent the command line but it will keep your code organized and easy to read if you have errors later.
  4. The Send command will automatically type a message when a Hotkey is triggered. Anything you type after the comma will be typed automatically when you press the assigned Hotkey. For our example, if you wanted to include the message "wikiHow is awesome!" your code would look like:
      ^e::
          Send, wikiHow is awesome{!}
      
    • Special characters, like the exclamation mark, must be enclosed in braces { } so it isn't confused with the symbol for the "Alt" key.
  5. The Return command denotes the end of a command and stops the code from going to the lines below. Your finished code should look like:
      ^e::
          Send, wikiHow is awesome{!}
      Return
      
  6. Click "File" in the menu bar at the top of Notepad and click "Save" in the drop-down menu. This will save the code you've added to the script file.
    • You can close Notepad once your work has been saved.
  7. Double-click the script file on your desktop to run the script. You'll see a green AutoHotkey icon appear in your system tray on the bottom-right of your screen. This indicates that an AutoHotkey script is active.
  8. Open a new word processing app or any app you can type text and press your Hotkey combo. In our example, if you press Ctrl+E you'll see the text "wikiHow is awesome!" instantly appear.
  9. Advertisement
Part 4
Part 4 of 5:

Creating a Hotstring

PDF download Download Article
  1. You can open the script you were working on earlier and add a new command to it or create a new script from scratch.
    • Right-click the script and select "Edit Script" to edit the previous script.
    • Right-click the desktop and go to "New," then select "Auto Hotkey Script."
  2. A Hotstring command starts with :: at the beginning.
    • A Hotstring can take a word or phrase you type and replace it with a different word or phrase.
  3. For example, you can create a Hotstring so that every time you type the acronym "btw" it would automatically change it to "By the way," so you didn't have to type it all out. In that example, so far your code would look like:
      ::btw
      
  4. This will separate the end of the message you want to replace from the words or you want to replace it with. Using our example, the code would look like:
      ::btw::
      
  5. The message you type after the second pair of colons will automatically replace the first message in between the two sets of colons. In our example, the code would look like:
      ::btw::By the way,
      
    • Hotstrings don't need a "Return" command and the end because they are self-contained on one line of a script
  6. Just like before, save your work by clicking "File" and "Save"—then double-click the script to run it. Then open any app or program you can type in to test it out. When you type the letters "btw" onto any page, it should immediately be replaced with "By the way," in the text field.
  7. Advertisement
Part 5
Part 5 of 5:

Launching Apps or Websites

PDF download Download Article
  1. You can open the script you were working on earlier and add a new command to it or create a new script from scratch.
    • Right-click the script and select "Edit Script" to edit the previous script.
    • Right-click the desktop and go to "New," then select "Auto Hotkey Script."
  2. For example, if you wanted to open the wikiHow website whenever you pressed they keys Wind+W, you would type the code #w because "#" is the symbol for the Windows key and "w" is the code for the W key. In that example, the code would look like:
    #w
    
    • Click here for a complete list of key symbols if you want to use a different key combination for your Hotkey.
  3. Immediately after typing the code for the keyboard shortcut, type two colons :: and then press Enter to go to the next line. Indent the line using several spaces or the Tab key.
    • You don't have to indent the command line but it will keep your code organized and easy to read if you have errors later.
  4. The Run command can be used to launch any program, application or website. Type Run, with the comma at the end and Auto Hotkey will look for the name or location of any program or website listed after the comma. In our example, the code so far would look like:
    #w::
        Run,
    
  5. For example, if you wanted your Hotkey to launch Internet Explorer, you would type C:\Program Files\internet explorer\iexplore.exe after the Run command. In our example, since we want to launch the wikiHow website, our code would look like:
    #w::
        Run, https://wikihow.com
    
  6. The Return command denotes the end of a command and stops the code from going to the lines below. In our example. your finished code should look like:
    #w::
        Run, https://wikihow.com
    Return
    
  7. Just like before, save your work by clicking "File" and "Save"—then double-click the script to run it. If you followed our example, whenever you press the key combination of Win+W, the wikiHow website will open in your default browser!
  8. Advertisement



Expert Q&A

Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
Advertisement

Video

Tips

Submit a Tip
All tip submissions are carefully reviewed before being published
Name
Please provide your name and last initial
Thanks for submitting a tip for review!

You Might Also Like

Discord Grey Screen Fix a Grey Screen on Discord: 10 Troubleshooting Tips
Bypass Chat Gpt Filter5 Easy Ways to Get Around ChatGPT Security Filters
Soap2day SafeEverything You Need to Know About Soap2Day: Safety & More
Stream Crunchyroll on Discord Screen Share Crunchyroll on Discord with Friends
Reset TinderStarting Again on Tinder
Download Cinema on Firestick Download and Install Cinema HD on Fire Stick
Change a PSN Account Age2 Easy Ways to Change a PSN Account Age on Desktop or Mobile
Character AiCharacter AI: What It Is, Fixing Filters & Repeats, & More
Can't Login to Chat Gpt Fix ChatGPT Login Problems & Errors: 12 Solutions
Avoid Being Banned on SoulseekAvoid Being Banned on Soulseek
Make a Gif Your WallpaperSimple Ways to Make a GIF Your Wallpaper
Logitech G Hub Not Opening5 Ways to Fix Logitech G HUB When It Won’t Open
Missing File Privileges Steam7 Ways to Resolve the “Missing File Privileges” Error on Steam
Share Venmo Link3 Simple Ways to Share Your Venmo Link
Advertisement

About This Article

Travis Boylls
Written by:
wikiHow Technology Writer
This article was co-authored by wikiHow staff writer, Travis Boylls. Travis Boylls is a Technology Writer and Editor for wikiHow. Travis has experience writing technology-related articles, providing software customer service, and in graphic design. He specializes in Windows, macOS, Android, iOS, and Linux platforms. He studied graphic design at Pikes Peak Community College. This article has been viewed 104,438 times.
How helpful is this?
Co-authors: 7
Updated: January 5, 2025
Views: 104,438
Article SummaryX

1. Install AutoHotkey from https://www.autohotkey.com.
2. Right-click the desktop and click New.
3. Click AutoHotkey Script.
4. Right-click the script icon and select Edit Script.
5. Enter the code for the keyboard shortcut followed by two colons.
6. Press Enter.
7. Type "Send" followed by the word(s) or command.
8. Press Enter.
9. Type "Return" and save the file.
10. Double-click the script to run it.

Did this summary help you?

Thanks to all authors for creating a page that has been read 104,438 times.

Is this article up to date?

Advertisement