Jump to content

All my products and services are free. All my costs are met by donations I receive from my users. If you enjoy using any of my products, please donate to support me. My bare hosting costs are currently not met so please consider becoming a contibuting member by either clicking this text or the Patreon link on the right.

Patreon

Recommended Posts

Posted

i'm using autohotkey on my joystick (select button) to press AltF4 to close any games or application on GameEX

but it also close GameEx!

ex. Joy9::Send !{F4}

i try disable exit and disable escape key on enable/disable features(2)

but when i press altF4 still GameEx close.

is it possible to disable altf4 on GameEx?

Posted
i'm using autohotkey on my joystick (select button) to press AltF4 to close any games or application on GameEX

but it also close GameEx!

ex. Joy9::Send !{F4}

i try disable exit and disable escape key on enable/disable features(2)

but when i press altF4 still GameEx close.

is it possible to disable altf4 on GameEx?

If you are using AHK you can tell the script that if gameex is the active window to

joy9::

Which should make joy9 do nothing.

Posted

That may not be the script you want. If you do that, then if GameEx is running and you hit joy9, it will switch to GameEx and NOT sent Alt-F4. I don't know how you are using this, but if you are trying to kill a program with that button, but not GameEx, you would want:

joy9::
if Not WinActive GameEx
Send !{F4}
return

Guest
This topic is now closed to further replies.
×
×
  • Create New...