-
Posts
4,169 -
Joined
-
Last visited
-
Days Won
34
Content Type
Profiles
Forums
Articles
Downloads
Gallery
Blogs
Everything posted by JoeViking245
-
%romfile% is what you're after. Emulator.exe -command -command %romfile% /command
-
In my one test (Donkey Kong Jr. + Jr. Lesson), simply removing the + symbol found the correct game right away. But that may not be the best example to provide a good "Stress Test" of the system. With the + symbol in place, a 404 - File or directory not found. error is what appears.
-
(Quoting [tagging] the OP to make sure they get notified.) Good catch on an 'older' post. Thanks!
-
LaunchBox can install AND setup a few of the recommended emulators for you. Making [some] "non-RetroArch" emulators more of a 'downhill slide' rather than a 'climb'. These (as of this writing) include: BigPEmu (Atari Jaguar) Dolphin (Wii and GameCube) MAME (Arcade) PCSX2 (PS2) ScummVM Xemu (Xbox) e.g. When you go to import your Wii games, the Import Wizard should ask you if you want LaunchBox to install the recommended Dolphin emulator. (Suggestion, click Yes) It will then, at the end of the import process, install Dolphin and configure it to be portable. Then it's just a matter of selecting a game and clicking Play. An added bonus with this is, if there's an update available for these emulators (MAME excluded as the versions are ROM-set-version dependent), when you go to Tools - Manage Emulators, the status column will indicate if an update is available.
-
Visual Pinball X VideoSnap Creator
JoeViking245 commented on JoeViking245's file in Third-party Apps and Plugins
Thanks! I'm just happy that it's still [mostly] working after all this time. Regarding a workaround for the clear logo at the end of the video being rotated (actually, not being rotated with-the-video in your case), there is a simple one: Uncheck the box to add the Clear Logo. As for a "Fix" for when changing the Video Rotation and having the clear logo change with it, I will add that to the list along with the fix [still] needed for recording the DMD. Do note, there's a pretty good chance that it won't be fixed anytime soon. Unless you and/or others convincingly shame me into getting on it sooner. To be fair, EmuMovies does have video snaps for VPX tables and that number has increased over theses past years. Obviously, it won't cover all tables or be author specific for the tables nor have originals. So if you have your premium accounts, quite a few can be downloaded direct into LaunchBox. But they probably won't have the fade in Clear Logo. Rotated or otherwise. -
The error message seems to be missing some data. aka can't see the whole message to be able to best decipher the actual cause. For future, you can copy and paste the whole text that's in the message. Lately, that type of error message depicts that's there's an issue with a 3rd party plugin. You can try removing them from the Plugins folder. (the 3rd party plugins, that is. Not LaunchBox's plugins) Or, to change the Theme, you can edit /Data/BigBoxSettings.xml. Look for <Theme> and change the value to Default. e.g. <Theme>Default</Theme>
-
You and me both. lol When I searched the error, that was one of the "possible fixes". So simple. Yet so mind boggling. Glad to hear [at least] that is all working now!
-
Can try this: Can try this:
-
Thanks. The MAME Output says there's something messed up with the audio. (Not a common issue.) It could be a DirectX thing. If you're running the latest 0.278 MAME release (not an issue in 0.277), it could be that you have the Realtek app "Nahimic" running on your system. I've even heard your speakers not being plugged in can cause this and/or plugging in headphones fixes it. If none of that "turns on any lightbulbs" for you, we can start simple.... Have you done some customizations in MAME? Look in your MAME's root folder for "mame.ini" and [temporarily] rename it to something like "old-mame.ini". Also look in your C:/MAME/ini/ folder and do the same thing. (there should only be 1 mame.ini altogether and will be in one of those 2 locations). Click Test Game and see if the output's the same.
-
Only certain emulators have that feature available. Generally the more popular (recommended) ones. Which coincidentally are also ones that regularly have updates. If you go to Tools < Manage < Plugins... you can see which ones are available. (or just at the section your screen comes from. )
-
Correct. Because they need to be "named exactly the same as" the game's filename. (hence the use of ApplicationFileNameWithoutExtension ) Not Title. Edit your 'Pitfall' game in LaunchBox. Go to the Launching section. What is the name of the file? Mine is pitfall.zip Remove the extension, (as in "application filename without extension"), and it becomes pitfall. So I'd need to rename the image file to pitfall.png Though the games Title is Pitfall: The Mayan Adventure, that doesn't matter because we're looking for the filename (without extension). There isn't a binding available to look for the ID. But if there were, you'd need to rename the images to the games id_number.png Which is probably worse than using the games filename.
- 13 comments
-
Ahhh... you want to get the images from the custom folder. In that case, instead of getting the SelectedGame.Title, you want to use SelectedGame.ApplicationFileNameWithoutExtension to get the filename (found in the link I gave you). Then name your images [exactly] the same as the games filename. (change it in the red box) No. LaunchBox will only do what you tell it to do. Even when you get creative with atypical customizations. Just need to tell it ("ask for") something different. With creative customizations comes great responsibility [on your part]. And the LaunchBox app will work with you (as much as reasonably possible) to "make it work".
- 13 comments
-
A link to the .NET 3.1 dependency can be found in the LaunchBox Strategy Guide under Moving Your LaunchBox Instance to a New PC. In general, most ("newer") Windows installs will (should) have the DirectX runtimes. But if you have issues with the PC you connect to, that's something to look at.
-
Read a pdf file (or other format) while playing
JoeViking245 replied to james95t's topic in Features
Because of how Steam games (internally) launch another application that is the actual game, the LaunchBox pause menu cannot innately be used with Steam (and other applications that 'sub-launch' their games. ("sub-launch" is not the technical term. But I don't know what is. And it sounded good to me. ) -
- 825 comments
-
- bigbox
- custom bigbox themes
-
(and 1 more)
Tagged with:
-
This theme uses a direct call to the games literal Title to get the image. (old school) If the games Title is "The Amazing Spider-Man", the image should be "The Amazing Spider-Man.png". If the games Title is "Pitfall: The Mayan Adventure", the image should be "Pitfall: The Mayan Adventure.png". Which is impossible because you can't have the colon in a filename. Thus the image will never be found. Try replacing the last 2 <Image... lines with <Image Source="{Binding Path=SelectedGame.FrontImagePath}" Stretch="Fill" RenderOptions.BitmapScalingMode="HighQuality" Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}" /> Which is changing: This Source="{Binding Text, ElementName=GameImage}" To Source="{Binding Path=SelectedGame.FrontImagePath}" You can change FrontImagePath to whatever image type you want. Click below for more. https://feedback.launchbox.gg/help/articles/3543252-data-bindings#467rer00awx
- 13 comments
-
And the game you're trying to launch (Asteroids for example) still doesn't launch from LaunchBox? If so, see if this plugin can provide any insight as to what might be going wrong. With LaunchBox closed, follow the Installing and Using instructions.
-
Can you share another screenshot of the section where you added that parameter? Having 2 folders with the same contents won't cause any conflicts. As long as the files you imported are still in the folder you imported them from.
-
No worries. Were you able to get it to work with my suggestion?
-
You got this! We have faith in you. Though seems like a lot of work for all f o u r games. Nonetheless, when you're on a mission, you gotta follow through.
-
Since your path to the Roms folder has spaces in it, try putting that part within quotes. "E:\Fujitsu - FM Towns Marty\Roms"
-
Didn't Get Gamesdb Account Verification Email
JoeViking245 replied to tikiTofu's topic in Website/Forum Support
Maybe try the forgot password? But I suppose it'll try to email you [again] and we know how that went last time. But could still try it. Otherwise, may need to email support or see if they respond here tomorrow (normal business days). (or both) -
Didn't Get Gamesdb Account Verification Email
JoeViking245 replied to tikiTofu's topic in Website/Forum Support
The LaunchBox Games Database site login now uses the same credentials (user name and password) as your Forums login. No need for separate ones. But you do still need login separately. -
Custom platform/playlist icons on sidebar
JoeViking245 replied to UncleDaddySwiss's topic in Troubleshooting
Assuming with your premium license you've updated to at least v13.21, you can read about the new locations here: LaunchBox Media Pack Feature – Version 13.21 - LaunchBox -
Version 1.0.1
28 downloads
Question: "When I try to launch an Arcade game using stand-alone MAME, all I see is a flicker of a black screen then it goes right back to LaunchBox. Why?" Answer: "Because something is wrong with your ROMs and/or something is wrong in your settings." This plugin gathers data and provides checks to help you determine what that something may be. Features: Shows the required dependency files needed (if any) Launches the game in MAME and captures the command window output that you never see. (Potentially useful 'Why the game isn't launching' data) View the emulators Running Script. (Typically never contains "the issue". But doesn't hurt to look.) Verifies ROM and dependency (BIOS & Device) file(s) exists and are accessible to the emulator when launching**. If found, checks and verifies the zip file contents (all inner files exist and CRC32's match). If a CHD is required, this only verifies the file exists and is accessible to the emulator when launching**. ** "accessible to the emulator when launching" The plugin looks for the "rompath" setting per MAME's order of prescience. This dictates which folders MAME will scan for ROMs and dependency files. This will NOT "fix it" for you. But should tell you everything you need to deduce "why" you can't launch a MAME game via LaunchBox. Once you know why, all you need to do is fix that part of the equation. Requirements: Requires LaunchBox 13.19 or newer Requires the games emulator to be mame.exe Only works with MAME Arcade machines. No software lists Only works with ROMs that are .zip (Not .7z) Since MAME is generally an all-or-nothing type of thing, this is essentially a one-off plugin. But if needed, it should provide sufficient information in a one-stop-shop to resolve your MAME launching issues. Installing: Extract the contents of the downloaded zip file into your /LaunchBox/Plugins/ folder. e.g. D:\LaunchBox\Plugins\MAMEtroubleshooting\MAMEtroubleshooting.dll Using: Start LaunchBox Right-click an Arcade game and select MAME Troubleshooting. Read through the Quick Analysis tab Click Test Game to capture and see MAME's command window Output If it indicates the game launches fine and you know it doesn't, click it again to see if it tells you a different story. Note: clicking a 3rd time won't change the answer it showed the 2nd time. Click Running Script to view the emulators Running Script. This usually is never the issue. But doesn't hurt to look. Click Check ROM(s) to scan the contents of the games ROM and Dependency (if any are required) zip files. This verifies the contents of the zip files and cross-checks those contents' CRC32 value against what MAME says they should be. (Works with both Merged and Non-Merged sets) For games requiring CHD files, it will only check that they are accessible to MAME and provide the files size. It won't do a hash check. Click Save Report to create a text file of all the produced data that you can share with your friends and family. Files are saved to /Plugins/MAMEtroubleshooting/Reports/[rom_name].txt (or /Reports/[rom_name] (Clone of [parent_rom]).txt) Once created, 2 icons will appear to open the txt file or open the /Reports/ folder. Once you've studied all the data and see "the issue", fix it and play games. 😎- 2 comments
-
- 4
-
-
-
-
- mame
- black screen
-
(and 1 more)
Tagged with: