Jump to content
LaunchBox Community Forums

faeran

Administrators
  • Posts

    2,784
  • Joined

  • Last visited

  • Days Won

    141

Everything posted by faeran

  1. Thanks @fdsighfiusgheiu3. Let's see how much of this I can answer: 1. You'll need to replace the following line of code within Wall2GamesView.xaml: <TextBlock x:Name="ActiveGame_Genre1" Visibility="Collapsed" Text="{Binding ActiveGame.GenresString, Converter={StaticResource ReturnElementX},ConverterParameter='1'}" /> with this: <TextBlock x:Name="ActiveGame_Genre1" Visibility="Collapsed" Text="{Binding ActiveGame.Platform}" /> 2. Remove all of this from Wall2GamesView.xaml: <!-- Game Description --> <Grid x:Name="TextScroller1" Width="{Binding ElementName=Canvas,Path=ActualWidth,Converter={StaticResource ScalePropertyValueD},ConverterParameter=W;850;1920}" Height="{Binding ElementName=Canvas,Path=ActualHeight,Converter={StaticResource ScalePropertyValueD},ConverterParameter=H;150;1080}" HorizontalAlignment="Left" VerticalAlignment="Top" Visibility="Visible" RenderTransformOrigin="0.5,0.5" Panel.ZIndex="25" > <Grid x:Name="TextScroller1scrollarea" RenderTransformOrigin=".5,.5"> <Rectangle VerticalAlignment="Top" Width="{Binding ElementName=TextScroller1, Path=ActualWidth}" Height="{Binding ElementName=TextScroller1, Path=ActualHeight}" Opacity="0" Fill="Black" > </Rectangle> <Grid x:Name="TextScroller1_Vertical"> <Viewbox > <DockPanel Width="{Binding ElementName=TextScroller1, Path=ActualWidth}" Height="{Binding ElementName=TextScroller1, Path=ActualHeight}" HorizontalAlignment="Center" > <Canvas Name="TextScroller1_VScrollingTextBlockCanvas" ClipToBounds="True" > <controls:ScrollableTextBlock x:Name="TextScroller1text" LineStackingStrategy="BlockLineHeight" TextAlignment="Left" FontFamily="LAUNCHBOX_ROOT_FOLDER/Themes/The POC/Fonts/Oswald-Light.ttf#Oswald Light" Foreground="#D2D2D2" Opacity="0.9" TextWrapping="Wrap" Width="{Binding ElementName=TextScroller1scrollarea, Path=ActualWidth}" ScrollBeginDelay="6" ScrollSpeed="6" ScrollEndDelay="6" ReverseScrollSpeed="0.5" ScrollDirection="Up" Text="{Binding Path=ActiveGame.Notes, Converter={StaticResource UseValueOrFallbackWithFormat},ConverterParameter=';None;No'}" ScrollAutoReverse="True" FontSize="{Binding ElementName=Canvas,Path=ActualHeight, Converter={StaticResource ScalePropertyValueD}, ConverterParameter=FontSize;18;1080}" > </controls:ScrollableTextBlock> </Canvas> </DockPanel> </Viewbox> </Grid> <Grid.RenderTransform> <TransformGroup> <RotateTransform Angle="0" /> <ScaleTransform ScaleX="1" ScaleY="1" /> <SkewTransform AngleX="0" AngleY="0" /> </TransformGroup> </Grid.RenderTransform> <Grid.Style> <Style TargetType="Grid" > <Setter Property="Width" Value="{Binding ElementName=TextScroller1,Path=ActualWidth}" /> <Setter Property="Height" Value="{Binding ElementName=TextScroller1,Path=ActualHeight}" /> <Style.Triggers> <DataTrigger Binding="{Binding ElementName=TextScroller1, Path=Width}" Value="NaN" > <Setter Property="Width" Value="Auto" /> </DataTrigger> <DataTrigger Binding="{Binding ElementName=TextScroller1, Path=Height}" Value="NaN" > <Setter Property="Height" Value="Auto" /> </DataTrigger> </Style.Triggers> </Style> </Grid.Style> </Grid> <Grid.RenderTransform> <TransformGroup> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="{Binding ElementName=Canvas,Path=ActualWidth,Converter={StaticResource ScalePropertyValueD},ConverterParameter=X;129;1920}" Y="{Binding ElementName=Canvas,Path=ActualHeight,Converter={StaticResource ScalePropertyValueD},ConverterParameter=Y;200;1080}" /> </TransformGroup> </Grid.RenderTransform> </Grid> 3. If you have one image you want to use for this view, you'll want to place it within the following folder: \\Launchbox\Themes\The POC\Media\ Then, replace this code: <Image x:Name="Image1img" HorizontalAlignment="Center" VerticalAlignment="Top" Opacity="1.0" RenderTransformOrigin=".5,.5" Stretch="UniformToFill" StretchDirection="Both" RenderOptions.BitmapScalingMode="HighQuality" Source="{Binding ElementName=Image1imagepath, Path=Text}" > With this, remembering to change "static.png" to the name of your image file: <Image x:Name="Image1img" HorizontalAlignment="Center" VerticalAlignment="Top" Opacity="1.0" RenderTransformOrigin=".5,.5" Stretch="UniformToFill" StretchDirection="Both" RenderOptions.BitmapScalingMode="HighQuality" Source="pack://siteoforigin:,,,/Themes/The POC/Media/static.png" > Then you'll probably want to get rid of the animation, so delete this: <!-- Storyboards --> <TextBlock Text="{Binding Path=NavigationStartedCounter, NotifyOnTargetUpdated=True}" Visibility="Collapsed"> <TextBlock.Triggers> <EventTrigger RoutedEvent="Binding.TargetUpdated"> <BeginStoryboard x:Name="Image1_SB1" HandoffBehavior="Compose"> <Storyboard AutoReverse="False" > <DoubleAnimation Storyboard.TargetName="Image1" Storyboard.TargetProperty="Opacity" BeginTime="00:00:00" To="0" Duration="00:00:00.2"> <DoubleAnimation.EasingFunction> <PowerEase EasingMode="EaseInOut"/> </DoubleAnimation.EasingFunction> </DoubleAnimation> </Storyboard> </BeginStoryboard> </EventTrigger> </TextBlock.Triggers> </TextBlock> <TextBlock Text="{Binding Path=ActiveGame.Title, NotifyOnTargetUpdated=True}" Visibility="Collapsed"> <TextBlock.Triggers> <EventTrigger RoutedEvent="Binding.TargetUpdated"> <BeginStoryboard x:Name="Image1_SB2" HandoffBehavior="Compose"> <Storyboard AutoReverse="False" > <DoubleAnimation Storyboard.TargetName="Image1" Storyboard.TargetProperty="Opacity" BeginTime="00:00:00" To="1" Duration="00:00:00.5"> <DoubleAnimation.EasingFunction> <PowerEase EasingMode="EaseInOut"/> </DoubleAnimation.EasingFunction> </DoubleAnimation> </Storyboard> </BeginStoryboard> </EventTrigger> </TextBlock.Triggers> </TextBlock> 4. This is all handled within the LaunchBox settings, using the Media priority options. Make sure you have gameplay screenshots for your games, then go into LaunchBox options, into Media > Screenshot Priorities, and have the Screenshot - Gameplay checked and at the top of your list. For video, make sure you have Video Snap checked and at the top of your list for Video Priorities. Here are some screenshots for reference.
  2. Version 1.1

    281 downloads

    RetroCRT was built during a Theme Workshop live stream. If you are interested in creating themes, subscribe to the Unbroken Software YouTube channel. RetroCRT A 4:3 theme that really hits that CRT nostalgic vibe. The theme and the COMMUNITY Theme Creator project files can be downloaded here. Watch this theme being built: Watch on YouTube: https://www.youtube.com/watch?v=Eu7U0sb1p94 Credits COMMUNITY Theme Creator by @y2guru. Find it here: https://forums.launchbox-app.com/files/file/2115-community-theme-creator-for-bigbox/ Subscribe to catch future live streams: https://www.youtube.com/channel/UCSIht6UXIEXIgz4eXAEShxA
  3. RetroCRT - A 4:3 theme - [Theme Workshop] View File RetroCRT was built during a Theme Workshop live stream. If you are interested in creating themes, subscribe to the Unbroken Software YouTube channel. RetroCRT A 4:3 theme that really hits that CRT nostalgic vibe. The theme can be downloaded here, while in the future I will be adding the Project Files you can use to load into the COMMUNITY Theme Creator. Watch this theme being built: Watch on YouTube: https://www.youtube.com/watch?v=Eu7U0sb1p94 Credits COMMUNITY Theme Creator by @y2guru. Find it here: https://forums.launchbox-app.com/files/file/2115-community-theme-creator-for-bigbox/ Subscribe to catch future live streams: https://www.youtube.com/channel/UCSIht6UXIEXIgz4eXAEShxA Submitter faeran Submitted 06/18/2021 Category Big Box Custom Themes  
  4. Thanks everyone. Super happy to be on the team, and excitedly looking forward to all the wonderful things to come. ?
  5. Hi @Stigt. Kind of curious. If you moved those screenshot images to another folder (like your downloads folder), and then tried to import them, does it work? Just a guess, but there may be something strange going on with file/folder locking (or a permissions thing), either with the folder you are trying to add the images to, or the images you are trying to add to the folder.
  6. Hi @Loud_Lou. Normally, you shouldn't need to rename your files or game titles in order for LaunchBox to launch your games. Are you able to clarify a more specific use case, for particular games, for what you are wanting to do?
  7. Hi @whyevenman. Are you able to show is a screenshot of what you are referring to. Is this because you hide your taskbar?
  8. Yup, that should work. The standard for image files is: [game name]-01 (replacing symbols with underscores... eg Oddworld: Abe's Exoddus becomes Oddworld_ Abe_s Exoddus-01) Alternatively, naming them the same as your imported game file also works.
  9. Hi @tastyratz. This is expected behavior. While you can run another import while media is downloading, you cannot scan added or removed roms. This could potentially change in future versions of LaunchBox.
  10. Hi @jayrox. That does sound like an interesting issue you are having there. I tested on my builds and don't seem to be having the same issue. Are you able to check your platform data files and make sure you don't have anything odd going on in there. You should only have 1 xml file per platform. If you see anything else in there, you will want to clear it out. \\LaunchBox\Data\Platforms
  11. Hi @Charlielorentz, Are you able to try and install LaunchBox over your current broken instance of LaunchBox and see if that makes any difference? Do you remember doing anything specific that may have caused LaunchBox to get messed up?
  12. Hi @Johnny T, I'm assuming that you've imported the folder of your Atari 2600 ROMs. Is this something that has happened to you consistently, or just once? Were you able to tell whether it's finding the exact same games again that it needed to remove?
  13. Hi @Archmage_R, This update definitely addresses a number of under-the-hood issues plaguing people that update more than one game at a time. I can see where you are coming, I like your idea regarding some kind of tickbox. If you'd like, I'd go open up a feature request on bitbucket to get the most exposure for it. It's in the top menu under Help & Support > Request a Feature.
  14. Hi @Zeaede. Big Box does structurally work differently. Big Box has the system and options menus, which are themeable in their own right, but they are separate views.
  15. Just to be a little more clear here. The original author of the plugin released the code on github and then was used in the theme creator project. I've mentioned this to the author of the theme creator and it is on his list to investigate.
  16. Yes, I think this is a long standing issue with the center text list plugin. From my understanding it happens when you switch to a new theme that utilizes it within the platform filter list, the first item doesn't load quite right, and you would need to change to another item for Big Box to fully load. With only ScummVM in your library, you can't switch to another platform, and therefore you are stuck. If you crash Big Box and come back into it, you should be fine. You could also add some more platforms as well Either way, the center text list plugin is definitely something that should be looked into at some point in the future, as many themes use it.
  17. Thanks for letting me know. I was able to reproduce this issue and I've released a new version of the theme on the forums. Can you download it and let me know if the issue has been fixed on your end?
  18. Hi @universeofgamer. I see what you mean here. There's a few different ways you can accomplish this. Let me first explain what the new version is doing: It uses logic to determine the names of the platform, and then shows the image that is tied to the appropriate animation. I did not anticipate all scenarios, like yours, with you having a music platform. I've added it and will be part of a future release. For now, you can replace your WheelGamesView.xaml file with this one, by dropping it into the following folder: LAUNCHBOX\Themes\Retrotastic\Views WheelGamesView.xaml Let me know if this works for you.
  19. And to add to @neil9000, this is usually some type of theme error. Your error message is alluding to an issue with the Unified Redux theme on your system, and it's pointing to: G:\LaunchBox\Core\Themes\Unified Redux See what happens if you remove/rename the Unified Redux folder in that location, along with: G:\LaunchBox\Themes\Unified Redux
  20. Hi @messiah81, If you have any payment related questions, best thing to do would be to send an email to support and they will be happy to help. You can use this link below: https://forums.launchbox-app.com/contact/ And as of now, unfortunately, there is currently no plans to port LaunchBox to Mac OS. But, please feel free to vote (or add) this feature by clicking above: Help & Support > Request and Feature
  21. For sure, I will be releasing the COMMUNITY project files. The only issue is that this theme was built with an unreleased version of the theme creator, and it's not compatible with the version on the forums. So, things are coming, it's just going to take a bit of time ?
  22. Hi @Traveler. Is it possible for you to share a video of the issue? I just want to make sure I'm giving you the best answer. From what I think you are saying, you want to make the black background transparent, the background that appears behind the playing video. Does that sound right?
  23. Hi @Logrim, There's a few different ways you can accomplish what you are looking for. However, since you are using the theme creator, one solution you may want to consider is to position a black rectangle over all your elements and animate it so that it will immediately fade out after a second or two. This will give enough time for all the elements to load, and provide a nice fade transition into your text list view.
  24. Hey @SiriusVI. Seems like you've done quite a lot to try and solve your colorful theme conundrum. Here's my 2c on how you can try and troubleshoot further. This probably works best if you can create a copy of your existing LaunchBox folder. First, you'll want to remove any LaunchBox plugins, just remove that variable altogether (all files within the LAUNCHBOX\Plugins folder). Test and see if that helps any (don't think it will but it's good to check). Then, start removing playlists from LaunchBox, one by one, and then platforms, testing in-between until you get to a point where the theme is finally functioning properly. This will, at the very least, give you some more info you can work with. Just know that the colorful theme was built using a special themer plugin, which is used to accomplish certain theming functionality. It could potentially be this plugin that's conflicting with either other plugins that you may have used (or are using) to build your particular library. I'm just not entirely sure how. Good luck. Hope this, at the very least, gives you some more insight as to your issue.
  25. Hi @kal9000. This functionality will only work in BannerBox 2.0, which is (currently) only downloadable on the forums.
×
×
  • Create New...