【AHK】固定wps的窗口大小/解决wps2019版重新打开窗口会缩小至100*100的bug

解决办法就是每一次点击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手册

相关推荐
templarzq8 小时前
WPS的ppt不显示页码问题
wps
JHC0000001 天前
发现个微信客户端的bug
微信·bug
低调电报2 天前
在WPS可以显示图片,word中不能显示的原因及解决
经验分享·word·wps
wow_DG4 天前
【Python✨】VS Code 秒开 Python 类型检查:一招 mypy + settings.json 让你的 Bug 原地现形!
python·json·bug
CHN悠远5 天前
飞腾D3000安装debian13后使用WPS的方法
wps
❀͜͡傀儡师6 天前
docker 安装WPS
docker·容器·wps
驱动探索者6 天前
Zephyr 获取 cpu 占用率异常bug分析
bug·rtos·zephyr
罗政6 天前
WPS Excel快速插入一批图片
excel·wps
薛定e的猫咪7 天前
【调试技巧】vscode 四种断点调试,快速定位 bug
ide·vscode·python·bug
万粉变现经纪人7 天前
如何解决 pip install 编译报错 ‘cl.exe’ not found(缺少 VS C++ 工具集)问题
开发语言·c++·人工智能·python·pycharm·bug·pip