Jump to content
LaunchBox Community Forums

YoYo

Members
  • Posts

    2
  • Joined

  • Last visited

YoYo's Achievements

1-Bit Wonder

1-Bit Wonder (1/7)

0

Reputation

  1. You could create an autohotkey script that is always running and looks for launchbox or bigbox running and then starts. Example below checks for Launchbox or Bigbox every 6 seconds, if either is running it opens notepad, if neither is running it closes notepad. #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. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #persistent Loop { Running = 0 Process, Exist, Launchbox.exe ; check to see if Launchbox is running If (ErrorLevel <> 0) ; If it is running { Running = Running + 1 } Process, Exist, Bigbox.exe ; check to see if Bigbox is running If (ErrorLevel <> 0) ; If it is running { Running = Running + 1 } If Running = 0 ; If it is not running { Process, Close, notepad.exe ; Close notepad } Else ; If it is running, ErrorLevel equals the process id for the Launchbox { Process, Exist, notepad.exe ; check to see if Printkey.exe is running If (ErrorLevel = 0) ; If it is not running { Run, notepad.exe } } Sleep 6000 ; sleep .1 minutes }
  2. Hello, first post here. I really like Launchbox, it's working well for me. Is there a way to access the Platform or System name and Game or ROM name in the AutoHotKey script tab of the Edit Emulator window? Kinda like you can use {{{StartupEXE}}}. I would like to do things with that info when launching games. Thanks
×
×
  • Create New...