vMix Forums
»
General
»
GT
»
Graphic for Scorers
Rank: Advanced Member
Groups: Registered
Joined: 8/2/2013(UTC) Posts: 462
Thanks: 38 times Was thanked: 39 time(s) in 35 post(s)
|
I would like to create a graphic that shows all scorers of the game. Something like this: But what if the hometeam scores a lot of goals and has over 5 different scorers? Is there a way to either automatically make the graphic larger in height or to scroll the text up and down? I know that I could loop the text vertically or auto squeeze the text, but that doesn't look very nice. Any ideas?
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/27/2012(UTC) Posts: 5,209 Location: Belgium Thanks: 291 times Was thanked: 955 time(s) in 790 post(s)
|
Believe you might have to look into going back to XAML titles to get something working and a bit of data manipulation Code:
<Control.Resources>
<Style TargetType="TextBlock">
<Style.Triggers>
<Trigger Property="Text" Value="">
<Setter Property="Visibility" Value="Collapsed"/>
</Trigger>
</Style.Triggers>
</Style>
</Control.Resources>
<ListBox Width="200" VerticalAlignment="Bottom" Background="#FF2CA620" Margin="295,0,295,69.12">
<TextBlock Text="Player1 left Player1 right" TextAlignment="Center" Width="179" />
<TextBlock Text="Player2 left Player2 right" TextAlignment="Center" Width="179" />
<TextBlock Text="Player3 left Player3 right" TextAlignment="Center" Width="179" />
<TextBlock Text="Player4 left Player4 right" TextAlignment="Center" Width="179" />
<TextBlock Text="Player5 left Player5 right" TextAlignment="Center" Width="179" />
</ListBox>
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 8/2/2013(UTC) Posts: 462
Thanks: 38 times Was thanked: 39 time(s) in 35 post(s)
|
Thanks!
I was already expecting XAML as an answer, but I would like to find a workaround with GT, any ideas?
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/27/2012(UTC) Posts: 5,209 Location: Belgium Thanks: 291 times Was thanked: 955 time(s) in 790 post(s)
|
Originally Posted by: Rinsky Thanks!
I was already expecting XAML as an answer, but I would like to find a workaround with GT, any ideas? had some but they didnt work out
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 8/2/2013(UTC) Posts: 462
Thanks: 38 times Was thanked: 39 time(s) in 35 post(s)
|
|
|
|
|
vMix Forums
»
General
»
GT
»
Graphic for Scorers
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Important Information:
The vMix Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close