Jump to content
LaunchBox Community Forums

paulmichel21

Members
  • Posts

    65
  • Joined

  • Last visited

Posts posted by paulmichel21

  1. 13 hours ago, ckp said:

    De hecho, creo que debes iniciarlo en el nivel del emulador usando la pestaña ahk del emulador. No creo que esto esté disponible a nivel de plataforma.

    Ah ok i try that when come home. Thanks 

  2. Another change very important.... please add masive aplication change . I just create a bat to launch joytokey but is for one game and i need to agree all game plataform. Do You know for every game is teddius. Jaja my english is bad bad bad jaja sorry 

  3.  

    Hello all, download the bezel from retroarch but I do not know how to make them work. Someone can guide me. In which folder should I save - vertical and horizontal. And how to make retroarch show it when playing. thank you for you help

  4. 11 hours ago, Jason Carr said:

    Tengo la opción Completo juego de marca en mi lista corta. :)

    Nueva beta está fuera chicos con diversas correcciones de todo, algunas mejoras de roscado para Big Box, y finalmente añadió el escaneo de Función eliminada de juegos en el menú Herramientas. Déjame saber cómo funciona para todos ustedes.:)

    hi Jason,

    In bigbox, it will be possible to change the exit option, for the option to turn off when it is locked with pin? Because I currently only start the machine without explorer.exe. Only with bigbox, but on leaving the screen is black and nothing has to force the shutdown. Could you change or add? Thanks for this amazing job  

  5. On 22/11/2016 at 10:56 AM, CoinTos said:
    
    
    
    $Esc::Run, %comspec% /c "c:\example\example.bat",,Hide

    Change the example path and bat file to yours and that should work. 

    mmm dont works.. 

    code:

     

    batchpath = E:\Hyperspin\emulators\irocker\killprocess.bat

    $Esc::Run, %comspec% /c "E:\Hyperspin\emulators\irocker\killprocess.bat",,Hide

     

    any idea?

  6. 11 hours ago, CoinTos said:

    Are you looking for a complete script or just the best way to run a bat file in an autohotkey script you already started?

    
    
    
    ; Set batch file path
    
    
    
    batchpath = c:\example\example.bat
    
    
    
    
    
    
    
    ; Run bat script, hide cmd window
    
    
    
    Run, %comspec% /c %batchpath%,,Hide

    The above is most likely what you are looking for, if not let me know.

    excelent. But something is wrong, I need to open that bat by pressing the Esc key

    like this

    
    $Esc::Run, %comspec% /c %batchpath%,,Hide

    but dont works.

    any idea?

  7. 6 hours ago, ckp said:

    If you just want to run Xpadder for the emulator and exit Xpadder when closing the game, just use this in the ahk tab:

    
    
    
    run, r:\somefolder\xpadder /m
    
    
    
    
    
    
    
    $Esc::
    
    
    
    
    
    
    
    {
    
    
    
            Run, c:\windows\system32\taskkill.exe /f /im Xpadder.exe
    
    
    
            Process, Close, {{{StartupEXE}}}
    
    
    
    }

    This assumes you use escape and/or controller automation to exit your games. Change the paths to match where your files are.

    Awesomeeeeee....!!!!! Thanks. 

    I add line to load the profiles and work very well

    
    run, r:\somefolder\xpadder /m r:\somefolder\profiles\somename_profile /m
    
    
  8. 9 hours ago, ckp said:

    This is possible by emulator. You can go to Manage Emulators, open the emulator you use for sega model 3 and add your autohotkey Xpadder startup command and exit command (can use taskkill command to exit Xpadder) in the autohotkey tab. Using the ahk script will cause Xpadder to startup when the game is launched and exit when the game is exited. There have been multiple requests/votes to add this functionality to the Launchbox gui per emulator and/or platform, but at least you can use autohotkey per emulator for now.

     

    Excellent I would love to know how I script.. can you help me with this ahk script?

  9. 23 hours ago, damageinc86 said:

    Thats actually way easier if you use rocketlauncher and joy2key.  You can make a profile directly from within rocketlauncher and have it be a game profile, then you select the game from whatever system you are in, and then whenever that game is launched it will start up that exact profile for you.  

    Thanks but, I just want to use LB so that the pc does not slow down and i use xppader 

  10. On 17/11/2016 at 5:36 PM, Jason Carr said:

     

    @paulmichel21 Honestly I'm clueless as to why that wouldn't be working. All I can figure is it's some kind of odd bug with AutoHotkey on your machine. I'm sorry I can't be more helpful with that.

    For everyone who is experiencing performance issues in Big Box, try editing the image priorities options in LaunchBox under Tools > Options. Change the priorities to only have one selected item in the list (if possible) and make sure to uncheck anything that you aren't using. @cammelspit reported that it made a big difference for him; let me know if it makes any difference for anyone else. I haven't been able to replicate any performance improvements myself, but it's worth a shot.

    Is in a single program that does not work. Irocker. Jukebox

    another thing. I'm trying to add xppader to a platform but I have no way. LB only allows you to add application to each game.

    I need to launch xppader with a specific profile, in the emulator sega model 3.

    Can you add the option?

  11. 4 hours ago, Jason Carr said:

     

    @paulmichel21 I just tested and confirmed that the AutoHotkey stuff is working properly for the Escape event script above; I'm not sure what might be happening on your system. What happens if you put in this script instead?

    $Esc::
    {
        MsgBox, TEST
    }

    Do you get a message box popping up when you press Escape?

    Ok i try this.... i press Escape but nothing happen .  and i try with code escape but nothing happen too

  12. 9 minutes ago, Jason Carr said:

    @salyangel Do you mean Windows is visible in between launching games with Rocket Launcher? I know Rocket Launcher isn't perfect with that stuff; it would be best to put that discussion in another thread though because this thread is for beta testing LaunchBox and Big Box only.

    @paulmichel21 I just tested and confirmed that the AutoHotkey stuff is working properly for the Escape event script above; I'm not sure what might be happening on your system. What happens if you put in this script instead?

    $Esc::
    {
        MsgBox, TEST
    }

    Do you get a message box popping up when you press Escape?

    i test  tonight when i come home... thanks

  13. @jasoncarr I explain, when entering the configuration of an emulator for example demul, in the script tab I typed in ahk code to exit with the escape key of the emulator.

    like this 

    $Esc::

              {

    Process, Close, {{{StartupEXE}}}

               }

    But with these last 3 updates has stopped working.

     

    sorry for my english

  14. 14 hours ago, spycat said:

    Hi paulmichel21.

    You can use an Additional App to run an XPadder profile before your game, and a 2nd one to stop XPadder after you quit your game.
    You don't need to use a batch file or a script to do this.

    You have to create 2 Additional Apps for each game.

    Application Name:
    Type what you want in here, it's only a description.

    Application Path:
    Set this to point to your XPadder.exe file.

    Application Command-Line Parameters:
    For the Additional App to start XPadder set this to the path to your XPadder Profile for the game. The /M switch just minimises XPadder to the tray.
    There's no need to include the Profile extension,; XPadder will add it automatically.
    By the way, XPadder is rumoured to not like spaces in the path to a Profile. If you have spaces, then you may need to enclose the path and profile name in double quotes.
    If you have to use double quotes, then leave the /M bit outside of them.

    For the Additional App to close XPadder set this to /C

    See images below for an example.

    Sorry I can't be of help with nomousy, but I don't use this.

    AutoStartGameProfile.PNG

    AutoStopXPadder.PNG

    Awesome ... now works perfect. I did the same with nomousy and also works very well ...
    Thank you very much really thank you

×
×
  • Create New...