So, I have tried every Script, I can find to get the MK6 emulator to open in full screen. Here are some below. Does anyone have one that works with LaunchBox, I seen videos of it working I can get it to work.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; When emulation has started, maximise the screen and pass control back to control panel
WinWait, Roms Screen 1,
IfWinNotActive, Roms Screen 1, , WinActivate, Roms Screen 1,
{
WinWaitActive, Roms Screen 1,
Send, !{Enter}
}
WinWait, MK6 Emulator,
IfWinNotActive, MK6 Emulator, , WinActivate, MK6 Emulator,
{WinWaitActive, MK6 Emulator,
WinMove,1,600
WinSetTitle, CLICK HERE TO USE BUTTONS
}
Second one
#Persistent
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
WinWaitActive, Roms Screen 1 ; Look for active game window.
Send !{Enter} ; Press ALT-ENTER to enable fullscreen.
~Enter::
WinActivate, MK6 Emulator
return
~ESC::
WinActivate, MK6 Emulator
Reload