urbanoanderson Posted May 18, 2023 Share Posted May 18, 2023 If I have too few platforms in a platform category menu it will show a repetition of items and circle to the begining. Is the a way to disable this behavior on platform lists so that A -> B -> C but C->A does not happen? Quote Link to comment Share on other sites More sharing options...
faeran Posted May 19, 2023 Share Posted May 19, 2023 16 hours ago, urbanoanderson said: If I have too few platforms in a platform category menu it will show a repetition of items and circle to the begining. Is the a way to disable this behavior on platform lists so that A -> B -> C but C->A does not happen? There is, but it would require that you make changes to the code of the custom theme. Based on the theme you are showcasing there, it's probably a bit of an extensive change to make, code-wise, but it's definitely possible. 1 Quote Link to comment Share on other sites More sharing options...
ATOdinson Posted June 22, 2023 Share Posted June 22, 2023 (edited) Sorry for the necro but I am looking for the same thing. I love cover flow themes but they all loop and end up looking awful if you only have a couple games. I wouldnt even know how to start editing a theme. Can you point me in the right direction? To add, I am using "Old Default" theme. Just trying to find a way to disable the looping menu wheels. Edited June 22, 2023 by ATOdinson Quote Link to comment Share on other sites More sharing options...
Artix15 Posted July 20, 2023 Share Posted July 20, 2023 I'm having exactly the same issue. Any ideas? Quote Link to comment Share on other sites More sharing options...
C-Beats Posted July 20, 2023 Share Posted July 20, 2023 Basically just look for the views "FlowControl" control and add an "Endless="False"" (without quotes) to it's properties 2 Quote Link to comment Share on other sites More sharing options...
Artix15 Posted July 20, 2023 Share Posted July 20, 2023 1 hour ago, C-Beats said: Basically just look for the views "FlowControl" control and add an "Endless="False"" (without quotes) to it's properties Many thanks dude, it worked! I really appreciate! 1 Quote Link to comment Share on other sites More sharing options...
scottvf Posted September 13, 2023 Share Posted September 13, 2023 On 7/20/2023 at 3:23 PM, C-Beats said: Basically just look for the views "FlowControl" control and add an "Endless="False"" (without quotes) to it's properties Where do I look for this to change it. (what folder and file?) Quote Link to comment Share on other sites More sharing options...
Retro808 Posted September 13, 2023 Share Posted September 13, 2023 43 minutes ago, scottvf said: Where do I look for this to change it. (what folder and file?) Look in the themes Views folder \Launchbox\Themes\[Name of theme\Views\ If you are using the Default theme you cannot edit it. You would have to copy the Default theme's folder and then rename the new copy to what ever you want. Then you can edit that theme and use it. You would need to edit the view xaml for the view you use (Check your BigBox settings >options >Views to see what view you are using). Once you figured out the view type return to the theme's \Views folder and right click > Edit that view's xaml file. You can edit in something like Notepad++ or even Notepad (Notepad++ gives a better coding style look to the document). Once opened search for "coverFlow:FlowControl" (there is only one so finding it is pretty easy). You need to either change the existing Endless property to false, or add a Endless="False" property to the FlowControl. The section should look like this: <!-- WHEEL --> <coverFlow:FlowControl x:Name="FlowControl" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="3" Grid.ColumnSpan="4" Grid.Row="0" Grid.RowSpan="8" CoverFactory="{Binding CoverFactory}" ImageType="Clear Logos" CurveAmount="-2.5" CameraZPosition="3.2" VisibleCount="16" PageSize="6" Spacing="0.9" ItemZPosition="0.7" SelectedItemZPosition="1.1" Panel.ZIndex="20" RotationAmount="12" Margin="100,0,0,0"> <coverFlow:FlowControl.Opacity>100</coverFlow:FlowControl.Opacity> <coverFlow:FlowControl.Effect> <DropShadowEffect BlurRadius="10" Direction="-90" RenderingBias="Quality" ShadowDepth="1" /> </coverFlow:FlowControl.Effect> </coverFlow:FlowControl> In this section of that code you will notice it does not have an Endless property. So you would at it. <coverFlow:FlowControl x:Name="FlowControl" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="3" Grid.ColumnSpan="4" Grid.Row="0" Grid.RowSpan="8" CoverFactory="{Binding CoverFactory}" ImageType="Clear Logos" CurveAmount="-2.5" CameraZPosition="3.2" VisibleCount="16" PageSize="6" Spacing="0.9" ItemZPosition="0.7" SelectedItemZPosition="1.1" Panel.ZIndex="20" RotationAmount="12" Margin="100,0,0,0"> So it should now look like this (see Enless="False" at the end of the line. Save the file and you should be good to go. <coverFlow:FlowControl x:Name="FlowControl" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="3" Grid.ColumnSpan="4" Grid.Row="0" Grid.RowSpan="8" CoverFactory="{Binding CoverFactory}" ImageType="Clear Logos" CurveAmount="-2.5" CameraZPosition="3.2" VisibleCount="16" PageSize="6" Spacing="0.9" ItemZPosition="0.7" SelectedItemZPosition="1.1" Panel.ZIndex="20" RotationAmount="12" Margin="100,0,0,0" Endless="False"> Quote Link to comment Share on other sites More sharing options...
scottvf Posted September 14, 2023 Share Posted September 14, 2023 2 hours ago, Retro808 said: dex="20" RotationAmou 2 hours ago, Retro808 said: Look in the themes Views folder \Launchbox\Themes\[Name of theme\Views\ If you are using the Default theme you cannot edit it. You would have to copy the Default theme's folder and then rename the new copy to what ever you want. Then you can edit that theme and use it. You would need to edit the view xaml for the view you use (Check your BigBox settings >options >Views to see what view you are using). Once you figured out the view type return to the theme's \Views folder and right click > Edit that view's xaml file. You can edit in something like Notepad++ or even Notepad (Notepad++ gives a better coding style look to the document). Once opened search for "coverFlow:FlowControl" (there is only one so finding it is pretty easy). You need to either change the existing Endless property to false, or add a Endless="False" property to the FlowControl. The section should look like this: <!-- WHEEL --> <coverFlow:FlowControl x:Name="FlowControl" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="3" Grid.ColumnSpan="4" Grid.Row="0" Grid.RowSpan="8" CoverFactory="{Binding CoverFactory}" ImageType="Clear Logos" CurveAmount="-2.5" CameraZPosition="3.2" VisibleCount="16" PageSize="6" Spacing="0.9" ItemZPosition="0.7" SelectedItemZPosition="1.1" Panel.ZIndex="20" RotationAmount="12" Margin="100,0,0,0"> <coverFlow:FlowControl.Opacity>100</coverFlow:FlowControl.Opacity> <coverFlow:FlowControl.Effect> <DropShadowEffect BlurRadius="10" Direction="-90" RenderingBias="Quality" ShadowDepth="1" /> </coverFlow:FlowControl.Effect> </coverFlow:FlowControl> In this section of that code you will notice it does not have an Endless property. So you would at it. <coverFlow:FlowControl x:Name="FlowControl" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="3" Grid.ColumnSpan="4" Grid.Row="0" Grid.RowSpan="8" CoverFactory="{Binding CoverFactory}" ImageType="Clear Logos" CurveAmount="-2.5" CameraZPosition="3.2" VisibleCount="16" PageSize="6" Spacing="0.9" ItemZPosition="0.7" SelectedItemZPosition="1.1" Panel.ZIndex="20" RotationAmount="12" Margin="100,0,0,0"> So it should now look like this (see Enless="False" at the end of the line. Save the file and you should be good to go. <coverFlow:FlowControl x:Name="FlowControl" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="3" Grid.ColumnSpan="4" Grid.Row="0" Grid.RowSpan="8" CoverFactory="{Binding CoverFactory}" ImageType="Clear Logos" CurveAmount="-2.5" CameraZPosition="3.2" VisibleCount="16" PageSize="6" Spacing="0.9" ItemZPosition="0.7" SelectedItemZPosition="1.1" Panel.ZIndex="20" RotationAmount="12" Margin="100,0,0,0" Endless="False"> That works. Thanks. The only programing I know is Basic from 1979 🤣 Programing languages come a long way since then. Quote Link to comment Share on other sites More sharing options...
panixx Posted November 6, 2023 Share Posted November 6, 2023 This should really be changed to be an option in BigBox settings as a global option in my opinion. It's one of the main reasons I have not switched to Launchbox yet as my main game manager. I know I can edit the files manually to provide the option, but just seems like it should be a settings option and not theme option. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.