Jump to content

MUGEN AHK Script Problem


pjbridger

Recommended Posts

Posted

Hi Guys,

 

I am reasonably familiar with AHK and have created several scripts without issue,

 

I am trying to set up a script so that MUGEN games will launch into fullscreen,

 

It essentially is just supposed to press alt+Enter after the game has started, I have this set to Post Launch,

 

Can anyone help?

#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.
	
winactivate, ahk_class SDL_app
WinWaitActive, ahk_class SDL_app
sleep 1000
send {Lalt down}{enter}{Lalt up}
ExitApp

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...