Windows XP shortcut key to focus a particular window

7,687

Solution 1

Autohotkey!

WinActivate, [Full Window Title]

If the window title changes, you can either use the bundled Window Spy to grab the ID, or

SetTitleMatchMode, 2

to be able to match a window with only a partial title. (There's also a regex mode, if you're comfortable with it).

The maximising would be WinMaximise rather than activate. This does not focus it, though, so you'd need to use both to maximise and focus a window.

EDIT:

Ok, real world example time.

#\::
   SetTitleMatchMode, 2
   WinActivate, is currently
return

That fire on winkey and \ (# being winkey), then focuses any window with "is currently" in the title. In this case, "User is currently status", for my IM windows.

Solution 2

I agree with Phoshi about AutohotKey. I'm not sure if you want to focus the same particular window each time, or be able to choose. If the latter, then I'd recommend iswitchw. Also made with AHK, you can assign a key (caps lock by default) to show a window picker, and type the first letter or two and hit enter to select it.

Solution 3

  • Make a shortcut to the application on the desktop

  • In that shortcut's properties, put your desired shortcut-key into the "Shortcut Key" field

Now with any other application focused, pressing that shortcut-key will start the shortcut.

If the application is already running, it will be given focus.

Solution 4

This free utility does just that: MLHotKey:

MLHotKey is assigns hotkeys to any top level application. This means that once you assign a hotkey to a window, you can switch back to that window using the hokey, which is (usually) faster than the alt-tab chain.

Instructions:

  1. Start MLHotKey
  2. Select the window from the list to which you would like to assign a hotkey.
  3. Put the cursor in the text box above the command buttons.
  4. Type the key combination that you would like to set. (e.g. Ctrl+Alt+I)
  5. Press Set and you're done!

The hotkeys will "stick" even after you close MLHotKey. You can also remove a window's hotkey by selecting the window and clicking "Remove". The refresh button refreshes the list of windows.

There are some windows that will not accept hotkeys (Outlook 98 is one), and not all key combinations will work.

image

Share:
7,687

Related videos on Youtube

conspirisi
Author by

conspirisi

Updated on September 17, 2022

Comments

  • conspirisi
    conspirisi over 1 year

    Say I've got several apps open and I want to keyboard shortcut to focus, or bring to the front, a particular window. Of course I know about alt+tab to cycle through windows, but it would be great to choose a specific window with a keyboard short cut.

    • Admin
      Admin over 14 years
      You should delete your post on SO.
    • Admin
      Admin over 14 years
      sorry that's true, I'll edit question to make more sense
  • conspirisi
    conspirisi over 14 years
    ok cool, I'll have to install software to do this then I guess. Is Autohotkey pretty simple to configure?
  • quack quixote
    quack quixote over 14 years
    Not true for all apps. Beyond what Phoshi mentions, some apps will start a second (or Nth) instance if their shortcut is activated again. It may be a viable solution for some particular app, however; test to be sure.
  • UNK
    UNK over 14 years
    Yep. It loads any script with a .ahk extension - they're just text files, editable in any text editor. I'll update my post with a better example.
  • RJFalconer
    RJFalconer over 14 years
    Yeah it lags for me a lot too. I've tested it on Vista only. I don't think there's another solution that doesn't involve some 3rd party app though.
  • quack quixote
    quack quixote over 14 years
    well there's always the "write your own" option, but this is SuperUsers, not StackOverflow... :)