我正在尝试编写一个按钮(雨量计),该按钮运行 AHK 脚本以获得alt+tab以提示任务窗口并在我选择一个时结束。到目前为止,我想出了这个:
#NoTrayIcon
#InstallKeybdHook
#InstallMouseHook
Send, !{Tab}
KeyIsDown :=
GetKeyState (LButton,P)
return
ifEqual, KeyIsDown, 1
Exit
我正在尝试编写一个按钮(雨量计),该按钮运行 AHK 脚本以获得alt+tab以提示任务窗口并在我选择一个时结束。到目前为止,我想出了这个:
#NoTrayIcon
#InstallKeybdHook
#InstallMouseHook
Send, !{Tab}
KeyIsDown :=
GetKeyState (LButton,P)
return
ifEqual, KeyIsDown, 1
Exit