dov_EL Posted April 22, 2019 Share Posted April 22, 2019 Hi everyone, I have a problem with PES2010 for Windows (on bartop), it is the only game that with the EXIT button that I assigned to the CAB, not only does not work but gives problems and can no longer return to the game or to bigbox . Does anyone know a method to fix the delta from this title to return to BigBox, or remove the EXIT function of BigBox just for this title so as to use the natural EXIT of the game? Thank you Quote Link to comment Share on other sites More sharing options...
dov_EL Posted April 22, 2019 Author Share Posted April 22, 2019 Solved $ESC::WinClose, ahk_exe pes2010.exe Thank You Quote Link to comment Share on other sites More sharing options...
dov_EL Posted April 23, 2019 Author Share Posted April 23, 2019 this is full script #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. $Esc:: { Process, Close, pes2010.exe Process, Close, {{{script.exe}}} } ProcessCheckTimer: { Process, Exist, script.exe pid2 := ErrorLevel If (pid2) Process, Close, %pid2% ExitApp } Return Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.