需要帮助修复标题栏删除脚本(AutoHotkey)


0

我制作了一个删除标题栏的脚本:http : //pastebin.com/yBTp5QML

但是它不能正常工作。我想要它,以便它自动打开而没有标题栏,然后能够按Windows左键并右键单击以重新显示标题栏

Answers:


0

不要将自动执行部分放在循环中……它会无限期地执行。

可能尝试这样的事情...

#Persistent

WinSet, Style, -0xC00000, A
return

;+Caption
LWIN & RButton::
WinSet, Style, +0xC00000, A
return
;
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.