Jump to content
LaunchBox Community Forums

Valden

Members
  • Posts

    1
  • Joined

  • Last visited

Valden's Achievements

1-Bit Wonder

1-Bit Wonder (1/7)

1

Reputation

  1. I know this is dated, but being a new user to LaunchBox I had this exact issue. I solved it by allowing the Esc key to perform two functions. First press of Esc will move the mouse out of view. Second press will exit the emulator. It is not ideal as the mouse will need to be manually moved by the first press of Esc, but there is no need for additional software. 1st) click on Tools then Manage Emulators. 2nd) Double click on Demul. 3rd) Select the AutoHotkey Script Tab. 4th) Replace the Default Script with the following: ; Press Esc to move mouse and close emulator n:=1 $Esc:: if ( n = 1 ) ;First press of Esc moves mouse { MouseMove, 2000, 2000, 0 ;increase the first two values if the pointer is still visible on your display n++ } else if ( n=2 ) ;Second press of Esc closes emulator { Process, Close, {{{StartupEXE}}} } 5th) Click on Ok. Give the script a test run and if you have any issues you can click on Reset to Default Script. I hope this helps.
×
×
  • Create New...