-
Posts
2,960 -
Joined
-
Last visited
-
Days Won
141
Content Type
Profiles
Forums
Articles
Downloads
Gallery
Blogs
Everything posted by faeran
-
This is based on your Cart Front Priority settings in your LaunchBox options. Yes, but it will get a bit complicated. To do this in the CTC, you would have to duplicate the cart element, then set the spinning animation on this duplicate one. Then create visibility conditioning that says "default to collapsed, but make it visible only on platforms that use discs" (you'll have to make an entry for each of your platforms that use discs). Then for the main cart element, you have to do the reverse, "default to visible, but collapse it when you are on any disc based platforms.
-
Not sure if this helps, but you can force any custom theme to run in either 16:9 or 4:3. Go into LaunchBox\Themes\[theme name] Open its ThemeSettings.xml file and set one of these to true: <Force16X9AspectRatio>false</Force16X9AspectRatio> <Force4X3AspectRatio>false</Force4X3AspectRatio>
-
Never used the Ayn Odin, but you should be able to move the entire LaunchBox folder to the root of your SD card and the next time you boot up LaunchBox it should notice that the folder is over there and should read your library from it.
-
-
Importing folder does not list games ready to import
faeran replied to wallmachine's topic in Troubleshooting
The primary reasons you would see this, as posted by @C-Beats: You'll also want to make sure that if you are dealing with txt files or something similarly non-standard, that you either drag/drop the files (not the folder) directly into LaunchBox, or add the files (and not the folder), if using the ROM Import wizard. -
Launchbox constantly freezing on import of media
faeran replied to Cleggy6879's topic in Troubleshooting
A few things you can try: Run: Tools > Download > Force Update Games Database Metadata Delete your ListCache.xml file, located in the folder: LaunchBox\Data Make sure you don't have any stray files inside of: LaunchBox\Data\Platforms (you should have 1 file per imported platform) Make sure you are not running LaunchBox as admin, and that you have full file/folder permissions for the LaunchBox folder -
While I wouldn't entirely recommend Windows 7 at this point (since it's a few years past it's end of life date), you'll want to make sure Windows 7 is fully updated. I believe LaunchBox won't work if Windows 7 is not on something like Service Pack 2 or higher.
-
I see. Yes, I managed to get MAME to launch multiple times in LaunchBox if you quickly press enter really quickly. The thread you referenced mentioned that the solution to this issue would come via the Startup Screens (which it did in 2018), and if you have them enabled, they do stop MAME from opening multiple times. However, startup screens are a premium feature.
-
Delete the scanlines.png file from LaunchBox\Themes\CoverBox\Media\General
-
-
I guess I should have asked which version of LaunchBox are you running, and are you seeing this happen in LaunchBox or Big Box? From what I see, I cannot get this to happen in either LaunchBox or Big Box no matter how fast I click.
-
Hi @Cleggy6879. Do you have any examples of missing games, or are you basing this off of the number of games imported?
-
-
-
Banners need to have the exact name of the platform you have in LaunchBox. Check the banner files inside of: LaunchBox\Themes\BannerBox\Images\Platforms\Banner Looks like there is a Sony PSP Vita banner which should probably have its name changed. For now, if you change the file name to whatever you have in LaunchBox, it should work.
-
The Citra MMJ Storage Access Version does work just fine and would be the version I'd recommend at this point.
-
And the TextGamesView.xaml is used for both the text games selection view and the game details view.
-
Do you know what the file system is of the hard drive you have LaunchBox installed on? Sometimes users will receive similar errors when their hard drive's file system is not NTFS (or something similar that supports symlinking).
-
What error do you get when you try and apply a custom theme, by going into Options > Views > Theme ?
-
If you are asking about a list of bindings, you can find then inside of LaunchBox\Themes\Documentation.pdf
-
You can do this either by loading the CTC files into the CTC and making the change through that editor, or you can dive into the code and replace the video with the cart image path. The community theme creator files are located on its download page in the description: And the Community Theme Creator can be found here: If you want to go the XAML editing route, you'll have to find and open the TextGamesView.xaml file (located in the themes Views folder. The replace: <transitions:TransitionPresenter x:Name="SelectedItemVideo1video" TransitionSelector="{Binding ImageVideoTransitionSelector}" StretchVideo="True" IsContentVideo="True" Opacity="1.0" RenderTransformOrigin=".5,.5" > <transitions:TransitionPresenter.Style> <Style TargetType="transitions:TransitionPresenter"> <Setter Property="Content" Value="{Binding ImageVideoView}"/> <Style.Triggers> <DataTrigger Binding="{Binding ElementName=SelectedItemVideo1,Path=Visibility}" Value="Collapsed"> <Setter Property="Content" Value=""/> </DataTrigger> <DataTrigger Binding="{Binding ElementName=SelectedItemVideo1,Path=Opacity}" Value="0"> <Setter Property="Content" Value=""/> </DataTrigger> </Style.Triggers> </Style> </transitions:TransitionPresenter.Style> <transitions:TransitionPresenter.RenderTransform> <TransformGroup> <RotateTransform Angle="0" /> <ScaleTransform ScaleX="1" ScaleY="1" /> <SkewTransform AngleX="0" AngleY="0" /> </TransformGroup> </transitions:TransitionPresenter.RenderTransform> </transitions:TransitionPresenter > With something like this: <Image Source="{Binding Path=ActiveGame.CartFrontImagePath}" />
-
I do believe that you are right in your assumption that the primary game needs to support high scores in order for the badge to appear. To comfirm, you can always right click a game and go into View High Score Leaderboards. Then at the bottom you will see a dropdown where you can sort through each version and see which ones actually do support it. I believe they are color coded.
-
Thanks @Daliant. As far as your questions go. Yes, I removed the icons, although in the future, I could always look into adding some back that can be clicked on, but no promises on when I can get to that. There' wouldn't really be an easy way for me to make a particular button to open and close the Game Details section. That's all handled outside of a theme's scope. You could use a third party program to make it so a middle mouse button would trigger CTRL+T.
-
What platforms are you referring to here?