Malted_Wheaties
Malted_Wheaties

Reputation: 143

I can't type space when my AutoHotKey script is running?

I'm new to AHK.

I am trying to create a script that is a better version of alt-tab and shift-alt-tab.

So far I have:

Space & L::AltTab
Space & K::ShiftAltTab

and it works, but when I try to type a space in normal writing, it doesn't work (I have to close the script in task manager).

Thanks in advance

Upvotes: 0

Views: 121

Answers (2)

Mlest
Mlest

Reputation: 46

Try with ~

~Space & L::AltTab
~Space & K::ShiftAltTab

Upvotes: 3

0x464e
0x464e

Reputation: 6489

You can add a ~ in front of the hotkey so it isn't consumed.

~Space & L::AltTab
~Space & K::ShiftAltTab

Upvotes: 1

Related Questions