Soyer Daniel
Всего сообщений: 7
Дата регистрации: 14.07.2020
|
Создано:
22.07.2020 23:08:55
|
So, we have a start program option but i really would like to see a stop program one.
As in, whenever i start an application listed in my AWM settings, have another application being terminated.
In my case: i use AHK very often but some of the game i play are very sensitive to that kind of software so, in this case, when i start x game, terminate AHK.
|
technoid
Всего сообщений: 36
Дата регистрации: 01.03.2018
|
Создано:
23.07.2020 00:09:47
|
Instead of starting the game directly from AWM, you could start an .exe which contains a script that first exits autohotkey (if AHK means autohotkey) and then starts the game. With AutoIt it would look like this:
Код |
---|
If ProcessExists("autohothey.exe") Then
ProcessClose("autohothey.exe")
PocessWaitClose("autohothey.exe")
EndIf
Run("PathToYourGame\YourGame.exe")
Exit |
With Autohotkey itself, it should look similar. https://www.autohotkey.com/docs/commands/Process.htm#Exist You have to convert the script into an .exe, which is also possible with AHK2exe.
|
Soyer Daniel
Всего сообщений: 7
Дата регистрации: 14.07.2020
|
Создано:
23.07.2020 00:21:43
|
I'm not starting anything "directly" from AWM, the game only has an entry in the specific settings of AWM for window size etc. So yeah, i could use an external script but it would be much easier if there was a stop program the same way there is a start program option
|
Bogdan Polishchuk
Администратор
Всего сообщений: 4128
Дата регистрации: 04.04.2012
|
Создано:
23.07.2020 23:08:07
|
Hi, everyone
Daniel,
Thank you for contacting us.
We'll consider your request and will post in this topic if the feature is implemented.
Best regards.
|
Soyer Daniel
Всего сообщений: 7
Дата регистрации: 14.07.2020
|
Создано:
24.07.2020 00:11:25
|
Thank you, i really hope it will
|