The problem:
Alt + Tab bug when in fullscreen
I'm having the following issue only when using anydesk in fullscreen: the alt+tab command skips every other open application. For example, I have chrome, notepad and excel open, and they appear in this sequence in the alt+tab window. When I press both keys though, the focus will jump from, lets say, chrome to excel, and then from excel to notepad on the loop, and so on.
It's a bit annoying, and only happens when using fullscreen.
The solution:
I used AutoHotKeys for windows to overcome this very annoying problem.
I mapped the [windows]+[tab] to perform [alt+tab] function and it works.
The code looks like this:
#Tab::
Send, !{Tab}
return
Comments