Jump to content
LaunchBox Community Forums

bbweiners

Members
  • Posts

    364
  • Joined

  • Last visited

Everything posted by bbweiners

  1. Yeah, the fix only works on the views with the RetroTV wallpaper. I actually like that 16:9 videos have the black bars at the top and bottom. It's just like it used to be on the old tube TV's. If you want to get the videos to display correctly on the other views, you'll have to play with these values: Grid.Row=" " Grid.Column=" " Grid.ColumnSpan=" " Grid.RowSpan=" " Grid Row affects vertical positioning. Grid Column affects Horizontal positioning. Grid.ColumnSpan and Grid.RowSpan affect the size.
  2. I'm not sure if there are any other views that use, the old retro TV wallpaper, with a video playing inside it. If there are, it will work on any of those.
  3. BoxesGamesView.xaml is the file that it works for.
  4. Hi, I love your theme. I've been messing around with it and created a platform view that compliments the BoxesGamesView. I'm happy to upload it if you're interested. As far as the video issues, I had the same problems others are having. Some of my videos played and fit correctly inside the TV and others didn't. What I found fixes the problem on any screen that plays the video inside the TV image is to replace the current lines of video code with this -- Example: BoxesGamesView.xaml -- replace the current lines -- <!-- VIDEO BACKGROUND --> <Viewbox Grid.Row="1" Grid.Column="4" Grid.ColumnSpan="7" Grid.RowSpan="8" Stretch="UniformToFill" > <transitions:TransitionPresenter TransitionSelector="{Binding ImageVideoTransitionSelector}" Content="{Binding ImageVideoView}" IsContentVideo="true"/> </Viewbox> with this -- <!-- VIDEO BACKGROUND --> <transitions:TransitionPresenter Grid.Row="1" Grid.RowSpan="8" Grid.Column="4" Grid.ColumnSpan="7" TransitionSelector="{Binding ImageVideoTransitionSelector}" Content="{Binding ImageVideoView}" IsContentVideo="true" /> I hope this helps some people out.
×
×
  • Create New...