Truest1 Posted September 14, 2022 Share Posted September 14, 2022 Hey guys anyone know why this is happening in the options screen? The wallpaper does not go full screen. In the menu screen it's perfect but in options screen it's not full screen. Please see pictures. this is perfect This one comes out towards one corner. Please help guys any help would be greatly apreciated. Quote Link to comment Share on other sites More sharing options...
Mr. RetroLust Posted September 14, 2022 Share Posted September 14, 2022 This is an issue I never could tackle with the theme, hopefully some day I can correct this with a future release of CTC, or someone else can tackle the code. Quote Link to comment Share on other sites More sharing options...
Truest1 Posted September 14, 2022 Author Share Posted September 14, 2022 7 hours ago, Mr. RetroLust said: This is an issue I never could tackle with the theme, hopefully some day I can correct this with a future release of CTC, or someone else can tackle the code. Awesome brotha. Yes that would be awesome. Amazing theme. 1 Quote Link to comment Share on other sites More sharing options...
C-Beats Posted September 14, 2022 Share Posted September 14, 2022 Not real sure how it's done via CTC but if you do the following the background should display correctly: Open \\LaunchBox\Themes\Neon Arcade Deluxe\Views\OptionsView.xaml Locate the image control who's source is backgroundoptions.jpg (was line 98 in my file) Replace Width="2194" with Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}" Save changes 1 Quote Link to comment Share on other sites More sharing options...
Truest1 Posted September 14, 2022 Author Share Posted September 14, 2022 16 minutes ago, C-Beats said: Not real sure how it's done via CTC but if you do the following the background should display correctly: Open \\LaunchBox\Themes\Neon Arcade Deluxe\Views\OptionsView.xaml Locate the image control who's source is backgroundoptions.jpg (was line 98 in my file) Replace Width="2194" with Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}" Save changes Awesome thank you so much. I will try this tonight. And will get back to you. Quote Link to comment Share on other sites More sharing options...
Mr. RetroLust Posted September 14, 2022 Share Posted September 14, 2022 1 hour ago, C-Beats said: Not real sure how it's done via CTC but if you do the following the background should display correctly: Open \\LaunchBox\Themes\Neon Arcade Deluxe\Views\OptionsView.xaml Locate the image control who's source is backgroundoptions.jpg (was line 98 in my file) Replace Width="2194" with Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}" Save changes Will this scale full screen for all 16:9 resolutions? That was the problem I had, it would display correctly on 4k and I think 1080p (cant remember well) but on other resolutions it was zoomed in or out, really strange lol Quote Link to comment Share on other sites More sharing options...
C-Beats Posted September 14, 2022 Share Posted September 14, 2022 The way it works is that the image will now always take up the entire screen. To make that happen the image is stretched or shrunk until is big or small enough to fit on the entire screen. If the host machine's ratio is different than the image ratio (I assume 16:9) then yeah the image will look zoomed in compared to 16:9 users. Otherwise you'd either have to distort the image or have letterboxing. If you want it to exactly match what you're doing in SystemView you'd just need to change the alignments from Stretch/Stretch to Top/Left and it'd be the same exact thing you have there. 1 Quote Link to comment Share on other sites More sharing options...
Mr. RetroLust Posted September 14, 2022 Share Posted September 14, 2022 43 minutes ago, C-Beats said: The way it works is that the image will now always take up the entire screen. To make that happen the image is stretched or shrunk until is big or small enough to fit on the entire screen. If the host machine's ratio is different than the image ratio (I assume 16:9) then yeah the image will look zoomed in compared to 16:9 users. Otherwise you'd either have to distort the image or have letterboxing. If you want it to exactly match what you're doing in SystemView you'd just need to change the alignments from Stretch/Stretch to Top/Left and it'd be the same exact thing you have there. I'll try it out soon, thanks man Quote Link to comment Share on other sites More sharing options...
Truest1 Posted September 14, 2022 Author Share Posted September 14, 2022 12 hours ago, Mr. RetroLust said: This is an issue I never could tackle with the theme, hopefully some day I can correct this with a future release of CTC, or someone else can tackle the code. Is there a way I can add rotating logo support to this theme? I forget who had a pack of clear logos that rotated I'm a circle. Would be nice to use those. Quote Link to comment Share on other sites More sharing options...
Mr. RetroLust Posted September 14, 2022 Share Posted September 14, 2022 11 minutes ago, Truest1 said: Is there a way I can add rotating logo support to this theme? I forget who had a pack of clear logos that rotated I'm a circle. Would be nice to use those. I bet you can, but i'm not sure if that'll affect performance. Quote Link to comment Share on other sites More sharing options...
Truest1 Posted September 14, 2022 Author Share Posted September 14, 2022 True Quote Link to comment Share on other sites More sharing options...
Truest1 Posted September 15, 2022 Author Share Posted September 15, 2022 11 hours ago, C-Beats said: Not real sure how it's done via CTC but if you do the following the background should display correctly: Open \\LaunchBox\Themes\Neon Arcade Deluxe\Views\OptionsView.xaml Locate the image control who's source is backgroundoptions.jpg (was line 98 in my file) Replace Width="2194" with Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}" Save changes Thank you so much Bro, That did the Trick. Thank you thank you thank you.... All good now. Quote Link to comment Share on other sites More sharing options...
Truest1 Posted September 15, 2022 Author Share Posted September 15, 2022 Another question about the Neon Deluxe Arcade Final with fading wheel. Can the fading wheel be adjusted to not completely fade away? So it fades out just to the point where it's still visible ? Quote Link to comment Share on other sites More sharing options...
C-Beats Posted September 15, 2022 Share Posted September 15, 2022 I've not used the theme enough to know what wheel/view you're referring to but if you look in the XAML file there is probably a "DoubleAnimation" changing the opacity from 1 to 0 and vice versa. Would just need to search for said animation then change the number to what you want. Quote Link to comment Share on other sites More sharing options...
Truest1 Posted September 15, 2022 Author Share Posted September 15, 2022 7 minutes ago, C-Beats said: I've not used the theme enough to know what wheel/view you're referring to but if you look in the XAML file there is probably a "DoubleAnimation" changing the opacity from 1 to 0 and vice versa. Would just need to search for said animation then change the number to what you want. Perfect I will check this tonight. What axml file should that be? Quote Link to comment Share on other sites More sharing options...
Retro808 Posted September 15, 2022 Share Posted September 15, 2022 11 minutes ago, Truest1 said: Perfect I will check this tonight. What axml file should that be? Depends on the view you are using. Look in your BB settings where you change the themes and it will tell you what view you have set. If you are using different views for each platform's game list then you can look inside the theme's folder. In there you will find a BigBoxSettingsOverride.xaml. Open that and it will tell you what view you are suing for the games level. Quote Link to comment Share on other sites More sharing options...
Mr. RetroLust Posted December 27, 2022 Share Posted December 27, 2022 On 9/14/2022 at 3:37 PM, C-Beats said: Not real sure how it's done via CTC but if you do the following the background should display correctly: Open \\LaunchBox\Themes\Neon Arcade Deluxe\Views\OptionsView.xaml Locate the image control who's source is backgroundoptions.jpg (was line 98 in my file) Replace Width="2194" with Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}" Save changes Thanks a ton @C-Beats this worked! I'm a bit late testing it out though lol 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.