VirtualDesktopAccessor
VirtualDesktopAccessor copied to clipboard
Feature Enhancement
GoToDeskTopNumber - Some times it would be really usefull not to have the desktop name popup when you switch desktops.
Could this be implimented with either a specific string as the window name i.e. SetDesktopName(0, "NoShow") or just SetDesktopName(0, "") An alternative could be using a desktop number of say a number 100 plus the existing desktop number i.e. for desktop 0 use SetDesktopName(100, "This wont be displayed")
Interesting, I think the API doesn't have such a switch.
But if setting it empty before switching works, then you can do that:
GoToDesktopNumber(num) {
global GoToDesktopNumberProc
Name := GetDesktopName(num)
SetDesktopName(num, "")
DllCall(GoToDesktopNumberProc, "Int", num, "Int")
SetDesktopName(num, Name)
return
}
I haven't tested this, but it should work right?