Can LALT+TAB be re-binded to another combination?

0

In Windows 7, could the "cycle windows", by default bound to LALT+TAB, be re-binded to another combination (without altering the keyboard layout itself).

o0'.

Posted 2012-04-27T08:11:42.673

Reputation: 1 868

Answers

2

You can use AutoHotkey to use something else instead of Alt+Tab.

Would look something like this IMHO:

;lets you use left control + J as if it was alt tab
LControl & j::AltTab

Find more examples here

Cilvic

Posted 2012-04-27T08:11:42.673

Reputation: 569

I'm sorry, I meant the opposite. I wanted to get the "ALT+TAB behaviour" hitting another combination of keys. Can AutoHotkey do that, i.e. raise the event "cycle windows"? – o0'. – 2012-04-28T09:00:41.437

changed my answer to show that. – Cilvic – 2012-04-28T19:43:45.297