-
Posts
7,330 -
Joined
-
Last visited
-
Days Won
27
Content Type
Profiles
Forums
Articles
Downloads
Gallery
Blogs
Posts posted by Retro808
-
-
Likely because with the combo there is now a 3rd layer (LB > AHK > Emulator) and AHK is having trouble executing the command with the prompt active. Using just the Escape key you are in the active window pressing a key immediately recognized by the emulator and LB is not actually doing anything.
-
@neil9000 is not doubting you have the issue you say that we need to actually see a video of it. He is just stating your issue is not a LB issue as in it is not a bug.
All of my cabinets close all of the emulators fine using my button or key combos. If this was a LB bug/issue more users would be posting about it. Its a setting issue pure and simple. Any chance you run any of those as Admin?
LB controller automation sends the button combo as an AHK to the emulator telling it to send Escape, if that does not work it then tries some other commands like Alt+F4 before stopping. If you have the emulator set to Admin it will not work.
-
You have something else going on then. I think I only use that script for maybe 2 or 3 emulators.
Can you post a pic of your set-up? Edit Dolphin and post a pic of the Details tab and the tab where you pasted the script.
-
Are you trying to run the importer against an arcade rom set and a software list rom set? I ask because you mention software list so not sure if you mean the machines files or the actual game roms and the full set importer is not for use with software list roms. The full set importer is for the arcade rom set which is why it is specifically called “Mame Arcade Full Set”
-
Not a bug. Likely need to add an AHK to the Running AutoHotKet tab in your emulator setup. Add the AHK below to the RunningAHK tab.
$Esc::
{
WinClose, ahk_exe {{{StartupEXE}}}
}
-
What theme? Does it do the same with other themes.
-
Ahhh. That's it. The theme specific overrides have wheel views saved for platforms. Traditionally I use text list for all my views as I prefer that. Recently testing a couple themes for a friend I changed to wheel view for platforms. I will reach out to Jason to see why text list for platforms will not show marquees.
-
It does show on the default. The POC is the only theme this issue appears.
-
@faeran Are you able to test marquee images?
I recently noticed that platform level marquee images do not show with this theme. Game level marquee images show fine. All other themes, even the prior themes you have made have no issues showing platform level marquee images. Even if I use a PlatformMarqueeView.xaml or remove it so BB shows the platform image by default nothing will show when I am on the platform list. Go into a platform's list of games and all the individual game marquees do show. I have tested on several cabinets.
-
There is currently not a setting inside BB for this.
-
I would bring it up in Y2guru's thread. He is usually good with coordinating with Jason to see how he/they can implement changes.
-
Thanks @faeran I figured that might have been the case, much like a platform specific view for other view types. I have never messed with it in this way so was not confident my answer would be correct.
-
5 hours ago, Sundeth said:
1 - I need BixBox to stop rendering the marquee file and render the clear logo
1. You cannot stop it as BB will generate the marquee as it is coded in the background logic to show a marquee even in themes that do not have a GameMarqueeView.xaml. So the only way I have found is to hide it by adding a black background. Placing it above Panel.ZIndex="0" will get it to cover the marquee. Adjust the column and row span to your grid.
<!-- BLACK BACKGROUND --> <Border x:Name="Blackscreen" Grid.RowSpan="8" Grid.ColumnSpan="8" Panel.ZIndex="1" Background="Black" Opacity="1" SnapsToDevicePixels="True" RenderOptions.EdgeMode="Aliased" ></Border>
2. To make the background show platform specific use a multi-binding. Something like below just direct to your folder path.
<!-- DEFAULT MARQUEE --> <TextBlock x:Name="MarqueeBackgroundPlatform" Visibility="Collapsed"> <TextBlock.Text> <MultiBinding StringFormat="LAUNCHBOX_ROOT_FOLDER/Images/Marquees/Platforms/{0}.png"> <Binding Path="SelectedGame.Platform" /> </MultiBinding> </TextBlock.Text> </TextBlock> <Image Source="{Binding Text, ElementName=MarqueeBackgroundPlatform, FallbackValue='LAUNCHBOX_ROOT_FOLDER/Images/Marquees/Platforms/Default.png'}" Grid.Row="0" Grid.RowSpan="4" Grid.Column="0" Grid.ColumnSpan="8" Panel.ZIndex="3" Stretch="Fill" RenderOptions.BitmapScalingMode="HighQuality" />
3. I am not sure of. I know for theme's some of the views (such as WallGames) you can create a dedicate view xaml per platform. So it might be a similar process. I am not sure if that would be doable with Marquee Views as these views have not received any updates. I will check on it.
-
1
-
-
Best way to see if it is theme related is try the same steps with another theme. I would test a couple different themes then report back.
-
You can PM me with the license data.
-
Check in BigBox settings under your keyboard mappings what you have set to the option for "Select".
-
Are you changing from the BB settings or from a mapped button/key? What version BB are you on?
From either I have never had to restart BB.
-
The shutdown.xaml would be located in the Startup theme folders. It is separate from the Theme folders.
-
1
-
-
This is something we have mentioned to many users. Typically though it is because we see a user will have an Arcade.xaml and then something like Arcade_Backup.xaml in the \Data folder and that will cause an issue. Inside the \Data folder LB will have trouble reading xaml files if you have the platform name in there more than once, even if one of the files is slightly named differently.
-
Do you have actual video files downloaded (mp4 file)? Youtube links in the metadata are not used to play videos in LaunchBox/BigBox.
-
You have to map a button or key to the option for “Change View”.
-
LB forum has no hidden options.
The only way to download media as a complete platform media pack is from another external source. Also media from within the LB UI is done based on the games you imported. Not as a whole platform.
-
What website? This one?
-
@mcfilmmakers Please see my post just prior to yours. I know your post came only a few minutes after mine and you were likely typing as I posted so I will leave it be.
Any more comments on polls, Jason’s reasoning on dev decisions (which he owes no explanation to anyone), and/or anything non beta is getting deleted. From this thread or any beta thread moving forward. If you have nothing about the beta to post. MOVE ALONG!
Is there documentation for creating pause themes?
in Features
Posted
There is not. Best thing to do is make a copy of the Default theme and rename it then start tinkering. The XAML Tips and Tricks thread in BigBox Custom Themes sub-forum has a lot of helpful tips. stackoverflow.com is a good site for coding tips.