Mapping multiple keys strokes to one key

26,308

I do things like that with AutoHotkey: http://www.autohotkey.com

Have a look at the Hotkeys documentation, it's really simple: http://www.autohotkey.com/docs/Hotkeys.htm

Share:
26,308

Related videos on Youtube

PaoloFCantoni
Author by

PaoloFCantoni

Updated on September 17, 2022

Comments

  • PaoloFCantoni
    PaoloFCantoni over 1 year

    I'm using both Windows 7 and XP (simulatnateously on two machines) and I'm getting frustrated with the fact that both versions use different keystrokes to move up the folder hierarchy in explorer. Windows 7 uses [Alt+Up] and XP uses [Backspace].

    I've had a look around and tried SharpKeys but as it says:

    Things that SharpKeys will not do:

    • Map multiple key presses to one key - e.g. it will not support an attempt to remap Ctrl+C to the F5 key

    So, is there any solution?

    TIA, Paolo

  • PaoloFCantoni
    PaoloFCantoni over 13 years
    Hi Slacker, I downloaded AutoHotkey, but although I can map WIN+Up to backspace, I can't seem to map Alt+Up: So: {#Up::Backspace} works but {!Up::Backspace} doesn't (ingore the braces). Any ideas why?
  • släcker
    släcker over 13 years
    Sorry, been quite busy these days. If you still have this prob try it with a space between: {! UP::Backspace}
  • AndiChin
    AndiChin over 3 years
    why was this downvoted? It sure is a viable option.