Computer games Module ahk does not work for somes games
Hello
I have a problem with my ahk script for some computer video games.
My script doesn't work with a few, as if the games were in exclusive full-screen mode and hyperlaunch was no longer responding.
If I lose focus on these games, the ahk script works, or the built-in .bat works.
Do you have an idea?
Thank You
Here's my script:
FileDelete, D:\Hyperspin\Modules\PC\Kill.bat
FileAppend, @echo off`nWMIC process where name="game.exe" Delete`nC:\>Taskkill /F /IM game.exe /T, D:\Hyperspin\Modules\PC\Kill.bat
RunWait, D:\lanceur.lnk, hide
ExitApp
CloseProcess:
keywait, PgDn, T5
if errorlevel = 1
{ Send !{F4}
WinKill, %Executable%
WinKill, game.exe
Process, Close, game.exe
Run *RunAs D:\Hyperspin\Modules\PC\Kill.bat, hide
}