我知道Alt+Space C可以关闭 PowerShell,但是Alt+Space已经在我使用中,我想将Alt+绑定F4到Alt+ Space C,如何在 AHK 中实现?
答案1
以下脚本允许使用Alt+F4或Ctrl+D关闭 PowerShell:
#IfWinActive ahk_exe powershell.exe
!F4::
^d::WinClose
#IfWinActive
我知道Alt+Space C可以关闭 PowerShell,但是Alt+Space已经在我使用中,我想将Alt+绑定F4到Alt+ Space C,如何在 AHK 中实现?
以下脚本允许使用Alt+F4或Ctrl+D关闭 PowerShell:
#IfWinActive ahk_exe powershell.exe
!F4::
^d::WinClose
#IfWinActive