logo

Live Production Software Forums


Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
Rinsky  
#1 Posted : Sunday, October 11, 2020 9:18:19 AM(UTC)
Rinsky

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:

UserPostedImage

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?
doggy  
#2 Posted : Sunday, October 11, 2020 7:14:55 PM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 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>


Rinsky  
#3 Posted : Monday, October 12, 2020 6:54:38 AM(UTC)
Rinsky

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?
doggy  
#4 Posted : Monday, October 12, 2020 10:46:52 AM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 post(s)
Originally Posted by: Rinsky Go to Quoted Post
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
Rinsky  
#5 Posted : Sunday, November 8, 2020 8:55:34 AM(UTC)
Rinsky

Rank: Advanced Member

Groups: Registered
Joined: 8/2/2013(UTC)
Posts: 462

Thanks: 38 times
Was thanked: 39 time(s) in 35 post(s)
okay...just came across this and remembered that I already saw it a couple of months ago:

https://www.youtube.com/watch?v=...gdxo&ab_channel=vMix

This solves it, Vmix is awesome!
Users browsing this topic
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.