您好我是autohotkey的新手(以及一般的编程),我想编写一个脚本,让我可以方便地切换到特定的桌面。例如,在我的脚本中,Capslock + 3切换到桌面3。
正如您所看到的,或者如果您尝试一下,它不是很强大。该脚本只知道与真实的桌面编号分开的桌面编号。例如,如果您在桌面4上运行脚本,脚本仍然以桌面设置为1开始,您必须按Caps + 4然后按Caps + 1将其设置为正确的方向。如果在另一个桌面上有一个闪烁的窗口并且您单击它,它会切换到该桌面,而脚本仍然认为您在上一个桌面中。
我已经搜索了autohotkey可以检测到您正在使用哪个桌面但无法找到的桌面。
任何人都可以提供有关如何改进它的任何提示吗?谢谢! :d
SetCapsLockState, AlwaysOff
desktop = 1
Switch(d)
{
global
;Determine how far away the desired desktop is from current one
press := (d-desktop)
desktop = %d%
;Determine which direction to switch desktops and stop script if already on current desktop
If press < 0
direction = Left
else if press > 0
direction = Right
else
return
press := Abs(press)
Loop, %press%
{
SendInput, ^#{%direction%}
Sleep, 75
}
return
}
CapsLock & 1::
Switch(1)
return
CapsLock & 2::
Switch(2)
return
CapsLock & 3::
Switch(3)
return
CapsLock & 4::
Switch(4)
return
;In case user switches desktop with traditional shortcuts
^#Left::
SendInput ^#{Left}
If desktop > 1
desktop--
return
^#Right::
SendInput ^#{Right}
If desktop < 4
desktop++
return
答案 0 :(得分:0)
例如,如果您需要使用实用程序并且无法使用VirtuaWin,那么我就不会尝试创建一个&#34;意识到&#34; &#34;检测&#34;的脚本当前的桌面。我会根据您用来切换桌面的热键将当前桌面存储在变量中,就像您一直在尝试的那样。
我认为问题在于你的左派和右派支持传统捷径。如果有一种方法可以禁用这些快捷方式,那么您可以使用更简单,更健壮的脚本进行维护。
答案 1 :(得分:0)
RegRead, cur, HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SessionInfo\1\VirtualDesktops, CurrentVirtualDesktop
RegRead, all, HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VirtualDesktops, VirtualDesktopIDs
ix := floor(InStr(all,cur) / strlen(cur))
msgbox current desktop index: %ix%
答案 2 :(得分:0)
我制作了一个ahk函数库,
如果您仍然需要检测您使用的是哪个桌面,
它是VD_getCurrentDesktop()
https://github.com/FuPeiJiang/VD.ahk
运行“VD examples.ahk”以使用库