Jump to content
LaunchBox Community Forums

Retro808

Moderators
  • Posts

    7,064
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by Retro808

  1. Are you trying to run the importer against an arcade rom set and a software list rom set? I ask because you mention software list so not sure if you mean the machines files or the actual game roms and the full set importer is not for use with software list roms. The full set importer is for the arcade rom set which is why it is specifically called “Mame Arcade Full Set”
  2. Not a bug. Likely need to add an AHK to the Running AutoHotKet tab in your emulator setup. Add the AHK below to the RunningAHK tab. $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} }
  3. What theme? Does it do the same with other themes.
  4. Ahhh. That's it. The theme specific overrides have wheel views saved for platforms. Traditionally I use text list for all my views as I prefer that. Recently testing a couple themes for a friend I changed to wheel view for platforms. I will reach out to Jason to see why text list for platforms will not show marquees.
  5. It does show on the default. The POC is the only theme this issue appears.
  6. @faeran Are you able to test marquee images? I recently noticed that platform level marquee images do not show with this theme. Game level marquee images show fine. All other themes, even the prior themes you have made have no issues showing platform level marquee images. Even if I use a PlatformMarqueeView.xaml or remove it so BB shows the platform image by default nothing will show when I am on the platform list. Go into a platform's list of games and all the individual game marquees do show. I have tested on several cabinets.
  7. There is currently not a setting inside BB for this.
  8. I would bring it up in Y2guru's thread. He is usually good with coordinating with Jason to see how he/they can implement changes.
  9. Thanks @faeran I figured that might have been the case, much like a platform specific view for other view types. I have never messed with it in this way so was not confident my answer would be correct.
  10. 1. You cannot stop it as BB will generate the marquee as it is coded in the background logic to show a marquee even in themes that do not have a GameMarqueeView.xaml. So the only way I have found is to hide it by adding a black background. Placing it above Panel.ZIndex="0" will get it to cover the marquee. Adjust the column and row span to your grid. <!-- BLACK BACKGROUND --> <Border x:Name="Blackscreen" Grid.RowSpan="8" Grid.ColumnSpan="8" Panel.ZIndex="1" Background="Black" Opacity="1" SnapsToDevicePixels="True" RenderOptions.EdgeMode="Aliased" ></Border> 2. To make the background show platform specific use a multi-binding. Something like below just direct to your folder path. <!-- DEFAULT MARQUEE --> <TextBlock x:Name="MarqueeBackgroundPlatform" Visibility="Collapsed"> <TextBlock.Text> <MultiBinding StringFormat="LAUNCHBOX_ROOT_FOLDER/Images/Marquees/Platforms/{0}.png"> <Binding Path="SelectedGame.Platform" /> </MultiBinding> </TextBlock.Text> </TextBlock> <Image Source="{Binding Text, ElementName=MarqueeBackgroundPlatform, FallbackValue='LAUNCHBOX_ROOT_FOLDER/Images/Marquees/Platforms/Default.png'}" Grid.Row="0" Grid.RowSpan="4" Grid.Column="0" Grid.ColumnSpan="8" Panel.ZIndex="3" Stretch="Fill" RenderOptions.BitmapScalingMode="HighQuality" /> 3. I am not sure of. I know for theme's some of the views (such as WallGames) you can create a dedicate view xaml per platform. So it might be a similar process. I am not sure if that would be doable with Marquee Views as these views have not received any updates. I will check on it.
  11. Best way to see if it is theme related is try the same steps with another theme. I would test a couple different themes then report back.
  12. You can PM me with the license data.
  13. Check in BigBox settings under your keyboard mappings what you have set to the option for "Select".
  14. Are you changing from the BB settings or from a mapped button/key? What version BB are you on? From either I have never had to restart BB.
  15. The shutdown.xaml would be located in the Startup theme folders. It is separate from the Theme folders.
  16. This is something we have mentioned to many users. Typically though it is because we see a user will have an Arcade.xaml and then something like Arcade_Backup.xaml in the \Data folder and that will cause an issue. Inside the \Data folder LB will have trouble reading xaml files if you have the platform name in there more than once, even if one of the files is slightly named differently.
  17. Do you have actual video files downloaded (mp4 file)? Youtube links in the metadata are not used to play videos in LaunchBox/BigBox.
  18. You have to map a button or key to the option for “Change View”.
  19. LB forum has no hidden options. The only way to download media as a complete platform media pack is from another external source. Also media from within the LB UI is done based on the games you imported. Not as a whole platform.
  20. What website? This one? https://www.launchbox-app.com/premium
  21. @mcfilmmakers Please see my post just prior to yours. I know your post came only a few minutes after mine and you were likely typing as I posted so I will leave it be. Any more comments on polls, Jason’s reasoning on dev decisions (which he owes no explanation to anyone), and/or anything non beta is getting deleted. From this thread or any beta thread moving forward. If you have nothing about the beta to post. MOVE ALONG!
  22. Any more Non-Beta related posts in beta testing threads will get deleted. These threads are solely for testing data related to beta releases so our two devs can have feedback to move forward. if it is not beta related start an appropriate thread in the appropriate sub-forum.
  23. It is known that LB/BB startups will not work with all emulators, part of it is due to fullscreen concerns. Teknoparrot and especially when using Game Loader have been known to have this issue. Take a look at this thread and see if anything in it can help.
  24. It sounds like you may have some of the keys you use in Retroarch also mapped to some of the BB keyboard automation controls. BB uses your emulator settings that were done inside of the LB UI, so it has no individual emulator set-up. All LB and BB do is send a command line to the emulator telling it what game file to run. In the case of Retroarch it also lets it know what core to use. So if things work in LB they would/should work in BB. I would check your BigBox keyboard automation mappings and make sure you do not have key 1 linked to anything like BigBox Pause menu.
×
×
  • Create New...