Build Your Own Arcade Controls Forum

Main => Software Forum => Topic started by: P Del Castro on December 16, 2009, 03:08:00 pm

Title: Request: Autohotkey script help.
Post by: P Del Castro on December 16, 2009, 03:08:00 pm
If anyone can help me with a .ahk file for autohotkey to press "shift and enter at the same time. I'm using the model 2 emulator with Maximus Arcade as the front end but when I launch it Maximus wont got to the back and my mouse is stuck behind the emulator. I can bring the emulator forward by hitting Shift+Enter. Ive run prelaunch scripts for Street Fighter 4 before (to hit enter after a brief pause at the launcher screen) but I have no idea how to write one. Any help would be appreciated.
Title: Re: Request: Autohotkey script help.
Post by: nexusmtz on December 19, 2009, 01:35:21 pm
#settitlematchmode=2
WinWaitActive, Model
send +{ENTER}

should be all you need. If that doesn't work, you'll need some more information, such as the acutal name of the window that the emulator launches.

--Nexusmtz
Title: Re: Request: Autohotkey script help.
Post by: brian_hoffman on December 19, 2009, 02:11:39 pm
If anyone can help me with a .ahk file for autohotkey to press "shift and enter at the same time. I'm using the model 2 emulator with Maximus Arcade as the front end but when I launch it Maximus wont got to the back and my mouse is stuck behind the emulator. I can bring the emulator forward by hitting Shift+Enter. Ive run prelaunch scripts for Street Fighter 4 before (to hit enter after a brief pause at the launcher screen) but I have no idea how to write one. Any help would be appreciated.
Sleep, 5000
Send, {SHIFTDOWN}{ENTER}{SHIFTUP}
Title: Re: Request: Autohotkey script help.
Post by: P Del Castro on December 20, 2009, 12:03:07 am
That second one did it. ;D Thanks guys for your help. I really appreciate it.