AHK 按钮到 运行 'alt+tab' 并在选择 window 时结束
AHK Button to run 'alt+tab' and ends when a window is picked
我正在尝试编写一个按钮(雨量计),该按钮运行 alt+tab 的 AHK 脚本以提示任务 Window 并在我选择一个时结束。到目前为止,我已经想出了这个:
#NoTrayIcon
#InstallKeybdHook
#InstallMouseHook
Send, !{Tab}
KeyIsDown :=
GetKeyState (LButton,P)
return
ifEqual, KeyIsDown, 1
Exit
Windows 7/10:
Ctrl+Alt+Tab 提示任务Window。
Send {Ctrl down}{Alt down}{Tab}{Alt up}{Ctrl up}
Windows 8:
Run %A_AppData%\Microsoft\Internet Explorer\Quick Launch\Window Switcher.lnk
我正在尝试编写一个按钮(雨量计),该按钮运行 alt+tab 的 AHK 脚本以提示任务 Window 并在我选择一个时结束。到目前为止,我已经想出了这个:
#NoTrayIcon
#InstallKeybdHook
#InstallMouseHook
Send, !{Tab}
KeyIsDown :=
GetKeyState (LButton,P)
return
ifEqual, KeyIsDown, 1
Exit
Windows 7/10:
Ctrl+Alt+Tab 提示任务Window。
Send {Ctrl down}{Alt down}{Tab}{Alt up}{Ctrl up}
Windows 8:
Run %A_AppData%\Microsoft\Internet Explorer\Quick Launch\Window Switcher.lnk