Jump to content
LaunchBox Community Forums

Retro808

Moderators
  • Posts

    7,330
  • Joined

  • Last visited

  • Days Won

    27

Posts posted by Retro808

  1. 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. 

  2. @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.

  3. 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”

  4. 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.

  5. @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.

  6. 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.

    • Thanks 1
  7. 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.

  8. @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! 

×
×
  • Create New...