解决办法就是每一次点击lbutton添加触发事件,同样也可以换成其他快捷键
js
#IfWinActive ahk_exe wpp.exe
~lbutton::
justfyWin(ahk_exe wpp.exe)
#IfWinActive
#IfWinActive ahk_exe wps.exe
~lbutton::
justfyWin(ahk_exe wps.exe)
return
#IfWinActive
#IfWinActive ahk_exe et.exe
~lbutton::
justfyWin(ahk_exe et.exe)
return
#IfWinActive
justfyWin(winName){
SysGet, ScreenHeight, 62
If WinExist(winName){
winmove,A, ,,0, 1400,ScreenHeight-10
return
}
}
其中 winmove,A, ,0, 1400,ScreenHeight-10 包含位置大小参考,具体可以查询AHK手册