启动特定应用程序时如何执行autohotkey脚本

时间:2015-09-29 16:30:22

标签: windows fullscreen autohotkey titlebar

我已成功使用以下autohotkey脚本来实现我想要的功能(从窗口游戏中删除标题栏和窗口框架):

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

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

我想要的是" WinSet,Style,-0xC00000,A"在启动特定应用程序时自动执行。

非常感谢任何反馈!

2 个答案:

答案 0 :(得分:2)

Altough wOxxOm的回答是完全可以接受的。您也可以使用Settimer和WinExist在持久脚本中执行此操作。

#persistent 

SetTimer, isItRunning, 1000

isItRunning: 
if winexist("yourprogram")
     WinSet, Style, -0xC00000

Return

答案 1 :(得分:1)

只需为游戏制作一个AHK启动器,然后使用它代替快捷图标或任务栏图标或其他任何用于启动游戏的内容。

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