窗口管理的脚本可以运行,但设置的快捷键不起作用,请大佬帮忙看看代码

期望实现的功能是当按下win+f时,使软件a和软件b铺满显示器2(副屏幕),代码如下:

#f:: ; 当按下Win+F时
targetMonitor := 2 ; 目标显示器设置为2(副屏幕)
SysGet, monitor, Monitor, %targetMonitor% ; 获取副屏幕的信息
appAWidth := (monitor.Right – monitor.Left) * 0.75 ; 计算软件a的宽度
appBWidth := (monitor.Right – monitor.Left) * 0.25 ; 计算软件b的宽度

; 调整软件a的窗口位置和大小
WinGet, idA, List, ahk_exe PDFXEdit.exe ; 获取软件a的所有窗口ID
Loop, % idA.Count() {
thisID := idA[A_Index]
WinMove, ahk_id %thisID%,, monitor.Left, monitor.Top, appAWidth, monitor.Bottom – monitor.Top ; 调整软件a窗口
}

; 调整软件b的窗口位置和大小
WinGet, idB, List, ahk_exe Xtranslator.exe ; 获取软件b的所有窗口ID
Loop, % idB.Count() {
thisID := idB[A_Index]
WinMove, ahk_id %thisID%,, monitor.Left + appAWidth, monitor.Top, appBWidth, monitor.Bottom – monitor.Top ; 调整软件b窗口
}
return

论坛管理 管理员

热门评论
:
该帖子评论已关闭
图片审查中...
编辑答案: 我的回答: 最多上传一张图片和一个附件
x
x
个人中心
购物车
优惠劵
有新私信 私信列表
搜索