1096
Emulators / Re: simulate button input for FULLSCREEN and set ESC to close Windows application
« on: December 05, 2015, 05:55:45 PM »
I use AHK and make it the right mouse click for the red button on my cab
from the usb track ball.. "this works as a combo for esc & alt f4 to exit games.
--------------------------------------------------------------
RButton::esc
; ----= [ .Esc = Alt-F4 toggle ] =----
+Esc::
Hotkey, Esc, Toggle
Return
; =========================================
; ----= [ .Esc = Alt-F4 ] =----
Esc::
SetTitleMatchMode, 2
IfWinNotActive, Firefox
Send !{F4}
Else
{
Click left 760, 65
Send ^w
}
Return
; =========================================
from the usb track ball.. "this works as a combo for esc & alt f4 to exit games.
--------------------------------------------------------------
RButton::esc
; ----= [ .Esc = Alt-F4 toggle ] =----
+Esc::
Hotkey, Esc, Toggle
Return
; =========================================
; ----= [ .Esc = Alt-F4 ] =----
Esc::
SetTitleMatchMode, 2
IfWinNotActive, Firefox
Send !{F4}
Else
{
Click left 760, 65
Send ^w
}
Return
; =========================================