Attract-Mode Support Forum
Attract-Mode Support => General => Topic started by: torben656 on March 08, 2018, 05:08:59 AM
-
So um. One of my emulators need a AutoHotkey script which sends Alt+Enter for it to go fullscreen. But I don't know how to do this. Can somebody help?
-
#SingleInstance force
Loop
{
WinWait, ahk_exe Demul.exe
Sleep, 6000
Send {Alt down}{Enter down}
Sleep 100
Send {Alt up}{Enter up}
WinWaitClose
}
Replace "Demul.exe" with your emulator of choice's exe. Then replace "6000" with a value that is closer to the speed your emulator launches and has focus.
-
So uh, in my emulator config in AM I'm supposed to run the .ahk script, right?
-
So uh, in my emulator config in AM I'm supposed to run the .ahk script, right?
No. You simply load the ahk script separately before launching AM. You can create a batch file to run the script and launch AM together if you wanted a one click solution.
-
Um. Is there a way to make things easier? Like a program or something that can set AutoHotkeys automatically.
-
you could use autoit instead.
-start demul.exe > config > plugins and paths > have a look at the value for Video Plugin (in my case : gpuDX11old )
-start a game and have a look at the values of SPG and GPU (in my case the first values, after starting a game, are spg: 2 gpu: 0 )
(http://fs1.directupload.net/images/180312/5k78mwck.png)
-create a sourcecode file like START.au3, change the Video Plugin, the value of spg, gpu (in my case gpuDX11old, 2, 0) and then compile it to START.exe:
#include <Misc.au3>
ShellExecute(@ScriptDir & "\demul.exe", ' -run=dc -image="' & $CmdLine[1] & '"')
WinWaitActive("gpuDX11oldsw | spg: 2 gpu: 0 |", "")
WinWait("gpuDX11oldsw | spg: 2 gpu: 0 |", "")
Send("!{ENTER}")
while 1
if _IsPressed ("1B") Then
ProcessClose("demul.exe")
EndIf
WEnd
-copy the compiled START.exe to same folder, containing the demul.exe
-create a display/emulator system for demul, depending to your paths (in my case):
executable C:\attract\EMU\demul\START.exe
args "[romfilename]"
rompath C:\attract\EMU\demul\roms
romext .iso;.cdi
the script starts demul.exe with your romfile (delivered from Attractmode).
it waits for demul.exe, that there is an active window with the settings/title "gpuDX11oldsw | spg: 2 gpu: 0 |".
is this special window active, then the script sends ALT+ENTER to this window.
then it waits, that you push Escape/ESC Button. If ESC is pressed, demul.exe exists and you are back to AM.