Change Alt+tab to just tab

0

I use Alt+Tab right now, but I'd like to change Alt+Tab in Tab, so I can click Tab to make the same thing of Tab. How can I make that?

Matteo

Posted 2017-04-14T02:38:42.333

Reputation: 3

Just a comment, if you use Alt+Tab a lot, using Alt+Esc might be quicker to go between the two most recent programs. It skips the "program chooser" Alt+Tab shows. Just FYI. – BruceWayne – 2017-04-14T05:50:39.517

So, how can I change Alt+Esc to Tab? – Matteo – 2017-04-17T22:50:22.503

that's a bad idea. Tab is used to move between items on the screen, for example between text boxes, check boxes or buttons. Without it filling a form will be tedious since you'll have to use the mouse to click the next field after entering – phuclv – 2019-12-01T10:16:13.050

Answers

2

There is a program called SharpKeys that allows you to map any key to any key. That should do in your case.

If you want to do some research yourself, just access the registry at: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout You can re-map anything you want there. The entries are as follows:

00000000 00000000 02000000 3A00E053 00000000

Here’s how it works:

The first 16 zeros are reserved/unused. The '02' how many keys you are going to re-map plus 1. The '3A00' is the key we actually want Windows to map to, which in this example is CAPSL. The '0E53' is the key we are mapping from, in this case the DELETE key. The next 8 zeros are EoL marker.

Overmind

Posted 2017-04-14T02:38:42.333

Reputation: 8 562

Is there a easier way? Like a bach script to install that you run when you want it? – Matteo – 2017-04-17T22:52:12.130

Reg entry modifications can be done via a batch file, so just make 2 of them: one with the modifications and one to undo them. – Overmind – 2017-04-18T05:21:47.447

Ye, but what is the batch script? I know 0 about that, and I didn't find so much in Google. What's the modifications code? – Matteo – 2017-04-18T09:30:34.660

Nothing special, just save the reg entry as a .reg file and you can directly run it from a .bat like you would do with an .exe. – Overmind – 2017-04-18T09:33:39.107

Is the reg 00000000 00000000 02000000 3A00E053 00000000 or HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout? – Matteo – 2017-04-18T11:29:04.863

To save an entry, open regedit and go to the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout and then using the menu export the content into a .reg (name it original.reg or something); then, make the modifications, and export another file (named altered.reg or anything). You will then be able to use any of the files at any time. – Overmind – 2017-04-18T11:36:43.223

I'd like to use SharpKeys, but I don't find Alt+Esc or Alt+Tab. – Matteo – 2017-04-18T11:36:52.370