Page 1 of 1

Remapping TAB + SPACE to some key

Posted: 10 Jun 2022, 02:25
by luftaquila
I'm using CTRL+SPACE and SHIFT+SPACE to change my language input:

Code: Select all

<^Space::VK15
<+Space::VK15
And now I want to remap TAB + SPACE to do the same thing. But none of the below works properly.

Code: Select all

TabSpace::VK15
{Tab}{Space}::VK15
What should I do to remap TAB + SPACE?
Thank you for your help.

Re: Remapping TAB + SPACE to some key

Posted: 10 Jun 2022, 02:47
by Rohwedder
Hallo,
try:

Code: Select all

Tab & Space::VK15
but the prefix key Tab will loses its native function.

Re: Remapping TAB + SPACE to some key

Posted: 02 Jul 2022, 04:29
by luftaquila
Rohwedder wrote:
10 Jun 2022, 02:47
Hallo,
try:

Code: Select all

Tab & Space::VK15
but the prefix key Tab will loses its native function.
Thank you for your reply. What I want was maintaining Tab key function while assign Tab & Space to VK15. Thank you.

Re: Remapping TAB + SPACE to some key

Posted: 02 Jul 2022, 06:02
by Rohwedder
Then perhaps:

Code: Select all

~Tab & Space::VK15
Tab remains Tab even if Space is pressed additionally.

Re: Remapping TAB + SPACE to some key

Posted: 02 Jul 2022, 06:26
by mikeyww
A different sort of effect:

Code: Select all

Tab::Tab
Tab & Space::x
Explained: Custom combinations