The Mask Posted February 23 Share Posted February 23 (edited) 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}" /> Edited February 23 by The Mask Quote Link to comment Share on other sites More sharing options...
faeran Posted February 23 Share Posted February 23 Are you trying to have many images for one game that you would then randomly select, or are you trying to solve the issue where a platform may have games that have the same name and you are wanting to differentiate between them? Quote Link to comment Share on other sites More sharing options...
The Mask Posted February 24 Author Share Posted February 24 "trying to have many images for one game that you would then randomly select" this Quote Link to comment Share on other sites More sharing options...
faeran Posted February 24 Share Posted February 24 19 minutes ago, The Mask said: "trying to have many images for one game that you would then randomly select" this That's going to require a plugin to facilitate the randomness you are seeking. Unfortunately, I'm not entirely sure if there's already one floating around for this exact purpose. Quote Link to comment Share on other sites More sharing options...
The Mask Posted February 25 Author Share Posted February 25 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 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.