当视频套接字(Google Chrome)退出全屏模式时,我需要:
发送,{F4};停止 bandicam 上的视频录制
它需要跟踪/查看第一。监视器 (也许正在看网站标题)
有人知道如何使用 Autohotkey 做到这一点吗?
提示... 当视频插座退出全屏时,活动窗口大小会发生变化。
可以通过 Chrome 查看标题标签进行监控
答案1
尝试:
#SingleInstance, force
SetTitleMatchMode, 2
loop
{
If Winexist(" - Super User")
{
WinGet, styles, Style
if(styles & 0xC40000)
{
if isfull
{
send {F4}
isfull=0
}
}
else
{
isfull=1
}
}
sleep 500
}
此版本应在每个显示器上运行,并且仅在以“- 超级用户”结尾的选项卡中运行