Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: Request: Autohotkey script help.  (Read 2097 times)

0 Members and 1 Guest are viewing this topic.

P Del Castro

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 6
  • Last login:April 28, 2010, 12:35:04 am
Request: Autohotkey script help.
« 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.

nexusmtz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 489
  • Last login:June 01, 2022, 03:14:22 am
Re: Request: Autohotkey script help.
« Reply #1 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

brian_hoffman

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:July 02, 2011, 09:02:20 pm
Re: Request: Autohotkey script help.
« Reply #2 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}

P Del Castro

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 6
  • Last login:April 28, 2010, 12:35:04 am
Re: Request: Autohotkey script help.
« Reply #3 on: December 20, 2009, 12:03:07 am »
That second one did it. ;D Thanks guys for your help. I really appreciate it.