desmume when exiting doesnt go back to mgalaxy main menu
This is handled by mGalaxy itself!...so you mean that you don't get back to mGalaxy when pressing 'Esc' once in Desmume?i would like to ask if anyone knows how to configure desmume emulator to go back to main menu of games list in mgalaxy so i can choose another game again
I have a new try with the last version and a clean setup.
I have just uncheck "show toolbar" in "view", and all is working.
Perhaps it's because I have an older mGalaxy version, but the script is still the same
The script send alt+F4 when you press escape, try to use alt+F4 yourself to see if it's work ?
I have just uncheck "show toolbar" in "view", and all is working.
Perhaps it's because I have an older mGalaxy version, but the script is still the same
Code: Select all
hotkeyset("{esc}", "Terminate")
;load application
local $PID = Run ( '"' & $app & '" ' & $command )
;wait for window to be active
WinWaitActive("DeSmuME")
;then set it fullscreen
Send("!{Enter}")
;waiting loop
While ProcessExists ( $PID )
Sleep(500)
WEnd
;exit
exit 0
;*************************************
;functions
Func Terminate()
Send("!+{F4}",0)
Exit 0
EndFunc
The script send alt+F4 when you press escape, try to use alt+F4 yourself to see if it's work ?
Last edited by Aeliss on Sun Mar 03, 2019 1:43 pm, edited 1 time in total.