Ask Leo! by Leo A. Notenboom

AutoHotkey - Mouse and Keyboard Remapping, Macros and Hotkeys

Search First! Then browse: Categories | Full Archive | By Date | Newsletter

Home » Recommendations » Software

Summary: AutoHotkey is a free and powerful utility that allows you to remap, or even reprogram, your keyboard key sequences and more.

How do I create a hotkey for entering my email address? I seem to do this dozens of times a day and it seems to be a chore!

Have I got a recommendation for you. The only caveat is that it's a tad geeky to set up, but it's incredibly powerful. I run it on both my Windows XP desktop and Vista laptop.

AutoHotkey is a free, small program that remains running in your notification area. It intercepts keystrokes (and mouse activity, if you like), and allows you to configure anything from simple remapping of one key to another, to simple text insertion, as you've described, to complex actions that are nearly little programs in and of themselves.

One thing that's easy to overlook is that AutoHotkey works at the keyboard level and is not tied to any application. So anything you use it for is available at any time, regardless of what program you happen to be using.

My needs are fairly simple, so let me show you some of the things that I have AutoHotkey configured to do.

"Automate almost anything by sending keystrokes and mouse clicks."
  • I find myself typing "http://ask-leo.com" a lot, so I have the key sequence "]ta" mapped to that. Any time I type "]ta", in any application, "http://ask-leo.com" is inserted instead.

  • My 8 line email signature (one of several) is automatically typed in for me in response to "]th". I can use that directly in my email program, in a text editing program, or even across a remote desktop or terminal session.

  • The sequence "]dd" inserts the current date like this: 07-Mar-2009.

  • I happen to run "xplorer2" instead of Windows Explorer, so I have the WindowsKey+E keystroke remapped to start xplorer2 instead of Windows Explorer.

  • My Caps Lock key, which I never use for Caps Lock, has been remapped into a MUTE button.

You get the idea. I also have a few shortcuts for common HTML elements that I find myself entering frequently.

Don't let the "]xx" format of my shortcuts throw you either, I chose that. In reality, it can be anything you want - "btw" could automatically type in "by the way", for example. I just chose something that I'd be unlikely to actually ever want literally.

Here are some more ideas from the AutoHotkey home page:

  • Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse or keyboard macro by hand or use the macro recorder.

  • Create hotkeys for keyboard, joystick, and mouse. Virtually any key, button, or combination can become a hotkey.

  • Expand abbreviations as you type them. For example, typing "btw" can automatically produce "by the way".

  • Create custom data-entry forms, user interfaces, and menu bars. See GUI for details.

  • Remap keys and buttons on your keyboard, joystick, and mouse.

  • Respond to signals from hand-held remote controls via the WinLIRC client script.

  • Convert any script into an EXE file that can be run on computers that don't have AutoHotkey installed.

The approach I'm using - hand coding the AutoHotkey macros - can seem a tad geeky, because, well, it is. Here's the AutoHotkey code to type in "http://ask-leo.com":

:*:]ta::
SendEvent http://ask-leo.com
return

"SendEvent" sends keystrokes, but the more confusing part is that ":*:]ta::" part, which defines when the macro should kick in. Once you have that, the rest is fairly easy.

That aside, even with my simple usage I've only skimmed the surface of what AutoHotkey can be used for. Certainly for simple things like text replacement or keystroke remapping it's a near perfect solution.

AutoHotkey - I recommend it.

Related:

Helpful? Get new articles weekly by email in my FREE newsletter!

Your Name:
Your Email:


Why Subscribe?

Article C3668 - March 7, 2009

Recent Comments
8 Comments

Thanks Leo, just installed autohotkey, and run the test example - very impressive - this will save me hours of tedious typing - thank you AGAIN - more useful advise!

Posted by: andrew, france at March 7, 2009 2:05 PM

For many years I've used a program called My Function Keys. With this, you assign text to the normally useless F keys. A single keystroke is all that is needed. It costs about 12.00 or so. You can even move the text files to other computers so that all you computers behave the same.

Posted by: Ron N. at March 12, 2009 6:23 AM

Hello Leo, I tried AutoHotkey for a while and made a few keyboard shortcuts, but then gave it up because it's a little too geeky and I couldn't find a good set of instructions. I would need a task-oriented manual if possible.

Is there an "AutoHotkey for Dummies" or equivalent?

This is a good program for those who have the patience to learn to use it.

Michael

Posted by: Michael Bates at March 17, 2009 8:07 AM

I love AutoHotKey! I use it to start applications that I use frequently but don't want open all the time, or a set of apps I use for presentations. I've also created some scripts to get to control panel apps without all the pointing and clicking.

As for instructions, there are people who have posted their AHK scripts for others to use. I learned quite a bit from seeing other scripts.

Posted by: Roslin at May 27, 2009 6:11 AM

In Word7 there is now a button called Quickparts. Add your email address to that.

Posted by: Sue at September 15, 2009 1:35 PM

I use the My Function Keys program suggested above by Ron. It has changed a bit. Only the F1 thru F4 keys are programmable, but there is no cost. Very simple to set up and a real time saver.

Posted by: Mike K at September 15, 2009 5:56 PM

I would also like to recommend the freeware Windows automation engine AutoIt. Much of AutoHotKey's scripting style is based on the old version 2 of AutoIt; AutoIt itself is now in version 3 and has been for years.

As a point of disclosure, I am one of the developers of AutoIt.

Posted by: David Nuttall at September 15, 2009 8:04 PM

WOW!! Thanks for introducing me to AutoHotkey.
Took a bit of savy but now it is so easy and I am using it in all my corespondance.
Keep up the good work
Cheers

Posted by: James Nell at September 16, 2009 1:48 PM

Post a comment on "AutoHotkey - Mouse and Keyboard Remapping, Macros and Hotkeys":






(Email Address will not be published.)

Remember Me?

By popular demand...
my tip jar
Cuppa Joe
Buy Leo a Latte!

(you may use HTML tags for style)

RSS feed Subscribe to the RSS Feed specifically for comments on this article.

Before commenting, please...

  • Read the article at the top of this page. If your comment shows you didn't, it'll be deleted and ignored.

  • Comment only on this article. Use the Google search box at the top of the page if you have a question about something else.

  • Don't include personal information in the comment. No email addresses. No phone numbers. No physical addresses.

  • Don't spam. Excessive links to unrelated sites within a comment or across multiple comments will cause all such comments to be removed.

  • Don't ask me to recover lost passwords or hacked accounts. I can't, and those comments will be deleted.

  • I can't respond to every comment. And I can't vouch for the accuracy of others who do.

Please wait. Your comment is being processed ...


Question? Ask Leo!