Jump to content
LaunchBox Community Forums

JoeViking245

Moderators
  • Posts

    3,447
  • Joined

  • Last visited

  • Days Won

    30

Everything posted by JoeViking245

  1. If you by chance mean a Theme Video for a game, you could narrow it down by selecting Games Missing Media, the choose Games Missing Videos. Another option to get you close is to go to Tools, Audit then select All Games or just the current Platform. Scroll all the way to the right until you see the Video column. If you click that header, it will sort them by number of videos. If you click on one of the cells that shows 1 or more videos, it'll pop up the editor window for that game and you can see what video type(s) it has. From here you can close the edit game window. That games row will be highlighted. Right click and select Delete, if you so desire. (Or just press the Delete key) If you weren't talking about Video Themes for games, my bad.
  2. F1::F5 F3::F8 But if you can change them in the emulator settings, you'd be a lot better off. But yes, this will work the same, as long as F1 and F3 aren't already assigned to something else in the emulator.
  3. Check the box "Ignore games that only have a Title change (when updating)" V4.04 (Jan. 18, 2022) New feature: Added a checkbox for when updating an existing Platform, if the game Title in your Platform doesn't match MAME's game Title (either MAME updated the Title or you modified yours), it will skip that game. Removed: Copy to Clipboard Feature introduced in v3.11.3-beta-17 due to conflicts when using the plugin remotely Fixed: Accidental 2nd click while Importing is already in progress
  4. My main PC has dual monitors, but I don't use it for gaming at all. And my cab only has one. So my use case for this is None. lol It's just cool to see that it works. 😎
  5. This version (v1.1) should display your selected image without cutting off the top/bottom, left/right. It will maximize the images width or height (whichever is greater) to the monitor's width or height extents, accordingly in conjunction with the monitor's aspect ratio. So basically, if your monitor display is rectangle and your image is square, you'll see "black bars" on the left and right sides of the image. But not on the top/bottom. DisplayOnMonitorX v1.1.zip Again, this "just-because, proof-of-concept" project was to accommodate a 3rd (or even 4th?) monitor (but is obviously flexible). If your setup only has 2 monitors, by all means make use of the built-in feature of BigBox as @Retro808 summed up quite concisely above. It'd be kind of silly using a third-party plugin made by some Joe-off-the-street for something the program has built in. Just sayin.
  6. How are you getting it to cover the taskbar? Is your taskbar set to autohide? I can't get mine to cover the taskbar at all. I assume you're talking about the LB GUI vs. a loading screen or something similar. When does this happen / what seems to trigger it? After playing a game? When you 'grab' the top with a mouse-click and move it yourself? Clicking between the minimize and maximize buttons? The GUI window should stay put unless you move it yourself. Do you have some other script running that somehow makes it full screen**? Checking if an app is "full screen" in AHK isn't very straight forward or reliable. A window** that is full screen is different than a window that is maximized. Here's something quick and dirty that'll sorta do what you're asking (in a roundabout way). But it'd be better to figure out why (and how?) LB is covering the taskbar in the 1st place. Then (possibly) fix that. Loop { if WinActive("ahk_exe LaunchBox.exe") WinRestore } (You don't need to tell WinRestore which window to restore because it's passed along from the if statement.)
  7. I don't know DemulShooter at all. Does it know where to find demul07a? Does demul07a needs a full qualifying path. If it's typically written that way from the Command prompt, it may be your START command line. On that line, add a {space}{double quote}{double quote} right after START START "" "F:\DEMUL BACKUP"............. Create a shortcut to the batch file. Right click the new shortcut and select Properties. On the Shortcut tab of Properties, next to Run:, change it to Minimized. Lauch using the shortcut (instead of the batch file itself).
  8. We fixed this in v3.0 to alleviate the issue of creating duplicate entries. By "fixed" I mean it checks against four scenarios. It compares [one by one] the game to be imported (Title and filename) against all existing Titles and Roms (filenames) in that given Platform. A B C D Title Exist TRUE FALSE TRUE FALSE Rom Exist TRUE TRUE FALSE FALSE If your situation, it found scenario B: one of your existing app paths contained the roms filename but none of your existing Titles matched the games Title (as declared by MAME). aka: MAME (or SOMEONE!! ) renamed the games' Title since the last import. This [fix] came about when we realized that not only do roms change names (as new versions of that rom/game are added) and game Titles change (i.e. Blockbuster changed to Block Buster) but also Parents become Clones and Clones become the Parent (as was the case in Milton Bradley Microvision - Connect Four). I can add a checkbox for 'if a rom file_name already exists in this Platform, skip it altogether' (scenario A & B). Not sure what, if any, kind of Dominoe affect this will create. Hopefully none. But it seems like it could be fixed by simply leaving the box unchecked. I can't seem to reproduce this. That is, with this checked it did rename the Titles that I had manually changed and the rom was in my selected Source Folder. But it didn't rename any of the ones I changed where the roms were not in my selected Source Folder. Not sure what to tell ya. Here's some behind the scenes madness to my methods for running the scenarios if morbid curiosity gets the better of you.
  9. Because I was too lazy to try to remember how to set the delay repeat-click thingy. (still am. lol) This way if you press and hold "coin", you have to wait 750ms before it detects another press/click. Which is usually long enough if you press and release the button. But if you presssssss and then release, the script may detect it as more than one press. At this point, MAME probably only gives you the one coin while the script counted 2 or 3. It's not the "proper" way to do it. But it does work. As cheesy as it may be. And ya, Coin1++ looks a lot cooler than Coin1 = Coin1 + 1 Glad it's working!!! (because I didn't really test it. lol)
  10. I'm kinda surprised DemulShooter even starts. Try: 3rd to the last line, putting the path to the executable in quotes. Otherwise you're just telling it to START F:\Demul aka Open explorer to F:\Demul.
  11. @Vojake I can't help with how your images look, but I can help you with selecting which image to display. Instructions: DELETE YOUR EXISTING DeviceControls FOLDER! Download, unblock and copy the contents of the zip file (which consists of a folder AND a file in that folder) to your Plugins folder. Start LaunchBox. Select Tools, DisplayOnMonitorX. Select which monitor # you want an image to display on. Drag and drop the Game Image or Platform Image you want to see into Primary Image. Drag and drop the Game Image or Platform Image you want to use if the Primary Image doesn't exist into Secondary Image. Click Save. Play games. DisplayOnMonitorX v1.0.zip
  12. Try pressing Ctrl+S to bring up the side bar.
  13. "Q" seems like an odd key assigned to inserting a coin. But who am I to knock it? MAME's default coin inputs for players one thru four are keys 5, 6, 7 and 8, respectively. Here's coin 1 and 2 (per MAME keyboard assignments) to get you started. Study it carefully and YOU can add coin 3 & 4 (or change it back to "Q" and whatever ). global coin1 := 0 global coin2 := 0 ; Player one coin input = "5" 5:: { if (coin1 = 5) ; Max 5 coins Return coin1++ 5::5 Sleep 750 } ; Player 2 coin input = "6" 6:: { if (coin2 = 5) Return coin2++ 6::6 Sleep 750 } Copy this into the Running [AutoHotkey] Script section of your MAME emulator and limit those little hoodlum's allowance (at least until they learn they can exit, then restart the game with 5 more quarters. lol).
  14. Try it with just one command. So you may need to have 2 batch files. I suppose you could put them both into one, but separate out the commands. Note that for the 2nd part you're dealing with Files and not Directories. So you need to change the "/D" to "/F". And you also want to tell it to look for just the .iso files (*.iso). FOR /D %%d in (*) DO extract-xiso -c "%%d" FOR /F %%f in (*.iso) DO extract-xiso "%%f" -d "M:\1\" Keep in mind, the second command is going to put everything into "M:\1\".
  15. It talked about it (the "-d" parameter) in the link that's on the 1st post. Can you show us what the contents of your batch file looks like?
  16. If you look at the documentation for the program, it says you can give it a specific folder to extract it to using "-d". It also says without that additional parameter it defaults to extracting it a subfolder of the same name as the file you're extracting (which is what you're seeing). So to tell it exactly where you want to extract the iso to, it looks like you'd do something like: extract-xiso "joes_game.iso" -d "D:\myGames\this folder\" Make sure you put the quotes as shown and have that last trailing slash at the end of your destination folder. As for crashing, you'd need to talk to the developers of that program.
  17. Can you share a screenshot of what you're seeing? Are your Banners made for 16:9? I'll have to look how I even put the images on there, but I don't think stretching or squishing is really an option.
  18. @Vojake Try this. Download and Unblock this zip file. DisplayControls - Banner-Device.zip Replace the "DisplayControls.dll" file in your../Plugins/DisplayControls/ folder with the one that's in the attached zip file. Start LaunchBox/BigBox This should display the Platform Banner image. If one doesn't exist, it should then display the Platform Device image.
  19. Other than turn its power switch off, no. lol jk Not sure what you're asking. I'll attempt the Platform Banner thing this weekend and maybe look at some customization (don't hold your breath) this weekend.
  20. OR.... put quotes around the last %%d (I think ) FOR /D %%d in (*) DO extract-xiso -c "%%d" Try it from the Windows Command Prompt (not to be confused with the PowerShell Window) on just one file to test. You can't do it in bulk until you figure out how to do just one. extract-xiso "joes_game.iso" If it errors, it should tell you why. Do you still have the preexisting subfolder called "joes_game"?
  21. Using an ini file is possible but I'd be more inclined to use an xml file. Though and ini is not out of the question. But I need to think of a good way to set it so the end user can easily change the image-type they want without me having to create a GUI for selecting one. If I get a chance (and have motivation), I'll dig up my code for it this weekend, refresh myself on how I actually got this work and see if I can conjure something up to give image options. Considering the popularity of this plugin (though is still considered beta), if you'd be happy with the Platform Banner being the default image, I could easily make one custom for you. Working out the best way to make it changeable (and have it function) in a user-friendly sort-of-way will take more time.
  22. A screenshot game play image is probably doable. A video will probably create too many new problems, so most likely not gonna happen. If you don't have any images in your "Arcade - Controls Information" folder for that game, it will already show the Platform Device image. Which type Platform image (if other than Device) would you like to have?
  23. Most likely, yes. It would have to be an image category that the specific game being loaded has. Such as “Box – Front”, “Screenshot - Game Title” etc. Specifically, what image type are you thinking you'd like to show on your 3rd monitor? To me, the Controls image made sense because you'd already have the game playing on 1 and the games marquee on 2.
  24. Apologies. I thought inside the zip was the DeviceControls folder which had all of the files in it, so you'd just extract/copy that folder into Plugins, and the files would come with it. Glad it's working now!!
  25. FOR /D %%d in (*) DO extract-xiso -c %%d OR FOR /D %%d in (*) DO "D:\utils\ConvertToXISO\extract-xiso.exe" -c %%d Use the 2nd option if your extract-xiso executable is not in the same folder as the batch file. Change the path accordingly but keep that part in quotes.
×
×
  • Create New...