Jump to content
LaunchBox Community Forums

The Mask

Members
  • Posts

    61
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

The Mask's Achievements

16-Bit Artificial Intelligence

16-Bit Artificial Intelligence (4/7)

4

Reputation

  1. eatkinola's no longer works for images and video. the community creator plugin works but the documentation is feignt. Is it possible to list all the controls that go under commc:UCVideo? That may be of great help
  2. "trying to have many images for one game that you would then randomly select" this
  3. From Tips and Tricks: (How do you make it so that bigbox selects 1 of many game images of the same game ending in game-1.gif, game-2.gif, game-3.gif, etc? Goal is using custom folders and not paths selected in launchbox options) @Retro808 <TextBlock x:Name="GameGifs" > <TextBlock.Text> <MultiBinding StringFormat="{}pack://siteoforigin:,,,/StartupThemes/LBFade/Images/Gifs/{0}/{1}.gif"> <Binding Path="SelectedGame.Platform" /> <Binding Path="SelectedGame.Title" /> </MultiBinding> </TextBlock.Text> </TextBlock> <Image gif:ImageBehavior.AnimatedSource="{Binding Text, ElementName=GameGifs}" Stretch="UniformToFill" RenderOptions.BitmapScalingMode="HighQuality" Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}" />
  4. game wheel > have music take priority over video sound > have video play. go into details view and then exit back to game wheel view. Music file stops working and sound from video plays instead.
  5. can we get support for wallpaper engine files since they use json so we can use those wallpapers for backgrounds inside bigbox?
  6. this and svg opentype fonts are desired to be supported
  7. So I got most to work with the Setter method. How do you target the text in the wheel with the Setter method only (example format)?
  8. I've tried it on the default theme wheel and same results. I'm going to try to set the wheel up like the default wheel with the setters and such and see what happens.
  9. I dont see any changes when using SelectedScale values and when I add SelectedOffsetProperty values, the wheel disappears. ItemSpacing doesn't seem to do anything either. I dunno what the problem is. <coverFlow:FlowControl x:Name="FlowControl" Height="{Binding ElementName=Canvas, Path=ActualHeight}" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" CameraZPosition="3.12" ClipToBounds="True" CoverFactory="{Binding CoverFactory}" CurveAmount="0.0" CustomImageType="Steam Banner" Endless="False" MaxVerticalImageResolutionOverride="800" Opacity="1.0" PageSize="4" RenderOptions.BitmapScalingMode="HighQuality" Spacing="1.001" VisibleCount="4"> <coverFlow:FlowControl.Camera> <OrthographicCamera Position="0,0,5" LookDirection="0,0,-1" NearPlaneDistance="0.01" FarPlaneDistance="1000" Width="2.7" /> </coverFlow:FlowControl.Camera> <coverFlow:FlowControl.FlowTemplate> <DataTemplate> <coverFlow:FlowContext> <Grid Background="Transparent" > <Grid.ColumnDefinitions> <ColumnDefinition Width="1*"/> <ColumnDefinition Width="1*"/> </Grid.ColumnDefinitions> <coverFlow:FlowControl ItemSpacing="0,-20" SelectedScale="3,3" SelectedOffsetProperty="1.5,1.5"/> <coverFlow:FlowImage Grid.Column="0" HorizontalAlignment="Stretch" ImageType="Steam Banner" Height="{Binding ElementName=Canvas, Path=ActualHeight}"/> <TextBlock Grid.Column="1" HorizontalAlignment="Stretch" VerticalAlignment="Center" Text="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type coverFlow:FlowContext}}, Path=DataContext.Title}" /> </Grid> </coverFlow:FlowContext> </DataTemplate> </coverFlow:FlowControl.FlowTemplate> </coverFlow:FlowControl>
  10. I haven't. That's the answer I was looking for and I wasn't sure on how to format that from the docs. Thank you. Lastly, how would I separate the selected game's size from the unselected games (selected game bigger/unselected game normal size)? Edit: tried what you provided but it didn't do anything. I used the camera controls for making items bigger for I couldnt get scale to work either. <coverFlow:FlowControl x:Name="FlowControl" Height="{Binding ElementName=Canvas, Path=ActualHeight}" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" CameraZPosition="3.12" ClipToBounds="True" CoverFactory="{Binding CoverFactory}" CurveAmount="0.0" CustomImageType="Steam Banner" Endless="False" MaxVerticalImageResolutionOverride="800" Opacity="1.0" PageSize="4" RenderOptions.BitmapScalingMode="HighQuality" Spacing="1.001" VisibleCount="4"> <coverFlow:FlowControl.Camera> <OrthographicCamera Position="0,0,5" LookDirection="0,0,-1" NearPlaneDistance="0.01" FarPlaneDistance="1000" Width="2.7" /> </coverFlow:FlowControl.Camera> <coverFlow:FlowControl.FlowTemplate> <DataTemplate> <coverFlow:FlowContext> <Grid Background="Transparent" > <Grid.ColumnDefinitions> <ColumnDefinition Width="1*"/> <ColumnDefinition Width="1*"/> </Grid.ColumnDefinitions> <coverFlow:FlowControl ItemSpacing="0,0"/> <coverFlow:FlowImage Grid.Column="0" HorizontalAlignment="Stretch" ImageType="Steam Banner" Height="{Binding ElementName=Canvas, Path=ActualHeight}"/> <TextBlock Grid.Column="1" HorizontalAlignment="Stretch" VerticalAlignment="Center" Text="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type coverFlow:FlowContext}}, Path=DataContext.Title}" /> </Grid> </coverFlow:FlowContext> </DataTemplate> </coverFlow:FlowControl.FlowTemplate> </coverFlow:FlowControl>
  11. I am trying to reduce the space between items on the wheel atm; working from the code you have me earlier.
  12. I'm not sure how to include ItemSpacing inside of the flowcontrol, can someone help with an example codeblock from the example in the docs? this is very hard to figure out without visual studio.
  13. So there's no way to tell it to leave the wheel as it is but to just add the text? Seems like now I have to rebuild the wheel from scratch and for some reason this becomes very laggy.
  14. the coverflow,flowcontrol is in a grid. the code i used above i put inside of the coverflow.flowcontrol (wheel).
×
×
  • Create New...