Page 1 of 1

send key combination trough game to windows

Posted: 19 Feb 2018, 09:04
by Aso
Hi,

i want to toggle desktops in windows 10 with the key combination
i made a script and it works perfect:

Code: Select all

F7::
if (test=0)
  {
Send, ^#{Right}
  test=1
  }
else
  {
Send, ^#{Left}
  test=0
  }
return
but when im in a game (windowed mode) and press the key, it doesnt work, i think the game blocks the combination to go trough to windows?
is there a way i can send the key combination trough the game to windows so that it works?