pmb6tz / windows-desktop-switcher

An AutoHotKey script for Windows that lets a user change virtual desktops by pressing CapsLock + <num>.
MIT License
1.23k stars 230 forks source link

Desktop switching doesn't operate on Surface Go #59

Open submeg opened 4 years ago

submeg commented 4 years ago

Hello,

I am trying to use this code on my surface go, but it doesn't allow me to shift to another desktop. I have installed the addons as mentioned here.

I was able to get around this issue using AHK codes. A sample is as per below:

` KeyWait, CapsLock

    Send, {LCtrl down}{LWin down}

    Loop 10
    {

        Send, {Left}
        Sleep, 100

    }

    Sleep, 25 

    Loop 8 ;Desktop 9
    {

        Send, {Right down}{Right up}
        Sleep, 200 

    }

    Send, {LWin up}{LCtrl up}

`

submeg commented 4 years ago
SurfaceGoDetails
Elijas commented 4 years ago

Thanks for reporting!