-
Posts
145 -
Joined
-
Last visited
-
Days Won
1
launchretrogirl2562 last won the day on November 26 2022
launchretrogirl2562 had the most liked content!
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
launchretrogirl2562's Achievements
32-Bit GPU (5/7)
66
Reputation
-
much obliged dr Seuss π
-
-
nice profile logo and nameππ
-
Definitely worth it. The emulator has a large list of playable games and the emulator is actively updated/developed: see here : https://rpcs3.net/compatibility
-
Sony Playstation 4 Unified HD Platform Video
launchretrogirl2562 commented on Saieno's file in Platform Theme Videos
-
-
I'm so dissapointed to your Launchbox!
launchretrogirl2562 replied to regismaltais33's topic in Noobs
Too be fair, that's not what he said. He said he found a lunch box.πππ₯ -
Creating a Startup Theme with Video Support
launchretrogirl2562 replied to Jason Carr's topic in Custom Theme Tutorials
Hi Faeran, Yes that works. Thank you very much. Sadly my skills in editing xaml files are severely lacking π’ Getting the marquee to show up in the right place is - i found out- a bit of a struggle. -
Connection PC to 65" 4K tv with 120 hz support, feels laggy
launchretrogirl2562 replied to Davideo81's topic in Noobs
did you activate game mode on your samsung TV? https://www.samsung.com/au/support/tv-audio-video/smart-tv-game-mode/ There are some settings you need to make. Also, it is best to sometimes not mirror...but just make the TV as the only active one. -
Creating a Startup Theme with Video Support
launchretrogirl2562 replied to Jason Carr's topic in Custom Theme Tutorials
Hi Jason, I was in the process of adjusting my theme to use moving marquees on top of my arcade cabinet. I use the following in my wheelgames3 xaml <!-- MARQUEE IMAGE --> <controls:PrioritizedPathSelector x:Name="MarqueeVideoFileName" FolderPath="Themes\Unified & Ultrawide\Media\marqueeVids" FileExtension=".mp4" Priority1FileName="{Binding SelectedGame.ApplicationFileNameWithoutExtension}" /> <controls:VideoControl VideoPath="{Binding PrioritizedFilePath, ElementName=MarqueeVideoFileName}" StretchVideo="true" Grid.Column="1" Grid.ColumnSpan="3" Grid.RowSpan="1" CenterVideo="false" Panel.ZIndex="1" HorizontalAlignment="Center" VerticalAlignment="Top" /> <TextBlock Grid.Column="1" Panel.ZIndex="2" Grid.ColumnSpan="4" Grid.RowSpan="1" Text="{Binding PrioritizedFilePath, ElementName=MarqueeVideoFileName}" Foreground="Orange" DockPanel.Dock="Left" FontFamily="{StaticResource FontBebasNeue}" FontSize="50" TextAlignment="Left" /> With the textblock I just check to see if the path to my marquee vid is correct...which it is. But my marquee just doesn't show. When I however click through to the textgames view....and go back...then magically the marquee appears. But never on the first go, and never while scrolling through the games in the wheelgamesview The textblock shows the correct path to the vid each time I scroll through the wheel....but the marquee never loads. Only always when first going to the textgames view...and then back I did include the reference in usercontrols : xmlns:videos="clr-namespace:Unbroken.LaunchBox.Windows.BigBox.Controls;assembly=BigBox" What could be the cause of this? I am using the following theme Example of marquees are attached 1943.mp4 1944.mp4 -
Crash FC25 with ryujinx emulator 1.2.7.6
launchretrogirl2562 replied to slashguns04's topic in Emulation
I follow Mr Sujano on youtube, both were featured there. -
Crash FC25 with ryujinx emulator 1.2.7.6
launchretrogirl2562 replied to slashguns04's topic in Emulation
Do try one of the other switch emulators: https://git.citron-emu.org/Citron/Citron https://github.com/emuplace/sudachi.emuplace.app/releases -
Hi, I am using the following xaml code in my bigbox theme <controls:PrioritizedPathSelector x:Name="BackgroundFileName" FolderPath="Themes\Unified & Ultrawide\Media\Background" FileExtension=".jpg" Priority1FileName="{Binding SelectedGame.Title}" Priority2FileName="{Binding SelectedGame.ApplicationFileNameWithoutExtension}" Priority3FileName="{Binding SelectedGame.SortTitle}" Priority4FileName="{Binding Platform.NestedName}" Priority5FileName="Arcade2" /> <Image x:Name="BackgroundImage" Grid.Column="2" Grid.ColumnSpan="8" Grid.RowSpan="8" Source="{Binding PrioritizedFilePath, ElementName=BackgroundFileName}" Opacity="100" Panel.ZIndex="0" Stretch="UniformToFill" RenderOptions.BitmapScalingMode="HighQuality" /> All images with special characters in them don't show. Others work fine. From the forum I for instance learned I need to replace : with a _ So for the game title '1944: The Loop Master' that becomes on disk '1944_ The loop Master.jpg' (see the Title of the game in the screenshot from bigbox 1944.png) I even tried to add an image with removing the underscore '1944 The loop Master.jpg' However, the image just doesn't show. I followed the instructions to the letter and am confused as to why this doesn't work???