Jump to content
LaunchBox Community Forums

meltman

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by meltman

  1. Did you ever solve this issue?

    I'm working on a script that will get both "LaunchBox Big Box" window handles, then get their current position, disable the marquee monitor, wait for Mame to quit, then move the window back to its original position.

    Kind of sucks that there is nothing to easily identify which window is the marquee. I wish they would embed some simple text in the window that you could search against. 

     

  2. I've fiddled with all the options with no luck. The background transition one seems to do what I want, but only on the primary display. The marquee seems to have it's own, non adjustable transition from what I can tell. 

    Any other ideas? Otherwise I'll log a feature request for it. 

    Kind of surprised I'm the first with a dynamic marquee on a custom cabinet that wants my artwork to show at the platform view as a static image.

  3. Hmm. Didn't seem to change my result.

    If I add the image source line twice though, I get the normal banner, with my marquee over the top of it.

    <Image Source="pack://siteoforigin:,,,/Themes/Marquee/Images/Marquee.png" Stretch="Uniform" HorizontalAlignment="Center" VerticalAlignment="Center" RenderOptions.BitmapScalingMode="HighQuality" />

    <Image Source="pack://siteoforigin:,,,/Themes/Marquee/Images/Marquee.png" Stretch="Uniform" HorizontalAlignment="Center" VerticalAlignment="Center" RenderOptions.BitmapScalingMode="HighQuality" />

     

    I can work with this - is there a way to disable the transition of the marquee? As I scroll through platforms the image briefly dims due to soft transition.

  4. <UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                 mc:Ignorable="d"
                 d:DesignHeight="562"
                 d:DesignWidth="1000"
                 HorizontalAlignment="Stretch"
                 VerticalAlignment="Stretch"
                 FocusVisualStyle="{x:Null}"
                 BorderThickness="0"
                 Margin="0"
                 Padding="0"
                 Background="#000">
    	<Grid Height="530" VerticalAlignment="Top" HorizontalAlignment="Stretch">
            <Image Source="pack://siteoforigin:,,,/Themes/Marquee/Images/Marquee.png" Stretch="Uniform" HorizontalAlignment="Center" VerticalAlignment="Center" RenderOptions.BitmapScalingMode="HighQuality" />
        </Grid>
    </UserControl>

    This is what I was going for - statically assigning the image for the PlatformMarqueeView.xaml.

    I dont seem to get what I'm looking for with this code. Maybe this isn't the right spot. I will post in the XAML tips and tricks thread. 

  5. Hello - I'm wanting to make a static marquee image while navigating platforms, but once selecting a platform have the game dynamic marquees take over.

    I tried modifying the platformmarqueeview.xaml to statically define the image I want but it seems to ignore the configuration.

    Any ideas to get this set up as a static marquee image?

×
×
  • Create New...