Build Your Own Arcade Controls Forum
Main => Software Forum => Topic started 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.
-
#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
-
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}
-
That second one did it. ;D Thanks guys for your help. I really appreciate it.