How to combine three keys (navigate virtual desktop) as a hotkey with AutoHotkey?

0

To navigate between virtual desktops, the default shortcut key is: Ctrl+⊞ (Win)+← (left arrow).

Now what I want is to auto navigate virtual desktop after a certain time, like every 10 minutes. How can I do this with AutoHotkey?

I tried but I was not able to do it.

user45519

Posted 2019-12-07T07:08:06.953

Reputation: 1

Please add the code that you've tried. – Biswapriyo – 2019-12-07T07:08:52.023

LWin & LCtrl:: GetKeyState, state, Left if state = D SendInput !{F1} Return – user45519 – 2019-12-07T07:15:28.737

No answers