Files
wiki/ahk/README.md
2024-11-22 11:55:01 -05:00

13 lines
187 B
Markdown

```ahk
+F10:: Run, %ComSpec% /c code "%A_ScriptFullPath%",, Hide
```
# hide-ahnlab.ahk
```ahk
#SingleInstance Force
Loop
{
WinWait "ahk_exe esaui.exe"
WinHide
Sleep 100
}
```