我已经成功地使用了以下自动热键脚本来实现我的目标(从窗口游戏中删除标题栏和窗口框架):

;-Caption
LWIN & LButton::
WinSet, Style, -0xC00000, A
return
;

;+Caption
LWIN & RButton::
WinSet, Style, +0xC00000, A
return
;

我想要的是“winset,style,-0xc00000,a”在启动特定应用程序时自动执行。
任何反馈将非常感谢!

最佳答案

只需为游戏制作一个ahk启动程序,并使用它来代替快捷方式图标或任务栏图标或其他用于启动游戏的图标。

Run, d:\somepath\game.exe
WinWait Game window title goes here
WinSet, Style, -0xC00000
ExitApp

07-25 23:22