vMix Forums
»
General
»
Feature Requests
»
GT Titler dynamic text field sizes
Rank: Member
Groups: Registered
Joined: 5/19/2018(UTC) Posts: 12 Location: Faroe Islands/Poland
Was thanked: 8 time(s) in 4 post(s)
|
For instance if you need to make lower thirds and/or players list, where firstname is with regular font, and lastname is with bold font. You can use two different textfields, but then they are placed static. That does not look good. Firstname Lastname.So some kind of control, that textfield2 should stick to textfield1, dynamically to textfield1 sie/length. Or if it is possible to insert some small HTML like code snippets, into the text, to make text bold . firstname <b>Lastname</b> . ![](/Themes/yafpro/icon_file.gif) Capture.JPG (22kb) downloaded 3 time(s).See attached picture for better understanding. If this is created somewhere already, that I did not find, please send me link, so I can add +1 there.
|
![thanks](/Themes/yafpro/heart_small.png) 5 users thanked BugviOester for this useful post.
|
|
|
Rank: Newbie
Groups: Registered
Joined: 11/13/2019(UTC) Posts: 3 ![France France](/Content/images/flags/FR.png) Location: lille
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/27/2012(UTC) Posts: 5,304 ![Belgium Belgium](/Content/images/flags/BE.png) Location: Belgium Thanks: 297 times Was thanked: 975 time(s) in 808 post(s)
|
While i admit it would be handy, GT titles were never intended to replace 3rd party title designers and probably won't be on the top of the list for now but who knows. But if it is really important and in urgent need there is still the Legacy XAML title option which gives one more possibilities even. Nothing a few stackpanels wont fix ;-)
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 2/18/2014(UTC) Posts: 1,838 Location: Stockholm
Thanks: 145 times Was thanked: 297 time(s) in 250 post(s)
|
+1 We need this quite frequently. Both for different font settings, as well as having two fields on the same line (in GT)
|
|
|
|
Rank: Member
Groups: Registered
Joined: 1/2/2021(UTC) Posts: 11 ![Canada Canada](/Content/images/flags/CA.png) Location: St. Lambert
|
|
|
|
|
Rank: Member
Groups: Registered
Joined: 7/6/2016(UTC) Posts: 11 Location: United States
Thanks: 3 times Was thanked: 1 time(s) in 1 post(s)
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 5/20/2015(UTC) Posts: 493 ![Man Man](/Themes/yafpro/male.gif) ![Denmark Denmark](/Content/images/flags/DK.png) Location: Copenhagen, Denmark Thanks: 402 times Was thanked: 100 time(s) in 79 post(s)
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 5/20/2017(UTC) Posts: 48 ![Man Man](/Themes/yafpro/male.gif) ![Philippines Philippines](/Content/images/flags/PH.png) Location: Philippines Thanks: 136 times Was thanked: 3 time(s) in 2 post(s)
|
|
|
|
|
Rank: Member
Groups: Registered
Joined: 8/16/2017(UTC) Posts: 25 Location: Lafayette IN
Was thanked: 8 time(s) in 3 post(s)
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 3/3/2021(UTC) Posts: 32 ![Man Man](/Themes/yafpro/male.gif) ![Brazil Brazil](/Content/images/flags/BR.png) Location: São Paulo Thanks: 1 times Was thanked: 12 time(s) in 5 post(s)
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 8/15/2017(UTC) Posts: 36 Location: Berlin
Was thanked: 1 time(s) in 1 post(s)
|
|
|
|
|
Rank: Member
Groups: Registered
Joined: 11/12/2018(UTC) Posts: 23 ![Norway Norway](/Content/images/flags/NO.png) Location: Oslo
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 6/5/2020(UTC) Posts: 91 ![Indonesia Indonesia](/Content/images/flags/ID.png) Location: Jakarta Thanks: 17 times Was thanked: 5 time(s) in 3 post(s)
|
|
|
|
|
Rank: Newbie
Groups: Registered
Joined: 10/20/2021(UTC) Posts: 3 ![Germany Germany](/Content/images/flags/DE.png) Location: Aachen Thanks: 1 times
|
|
|
|
|
Rank: Newbie
Groups: Registered
Joined: 1/25/2021(UTC) Posts: 2 ![France France](/Content/images/flags/FR.png) Location: paris
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 9/22/2020(UTC) Posts: 44 ![Canada Canada](/Content/images/flags/CA.png) Thanks: 1 times Was thanked: 5 time(s) in 5 post(s)
|
|
|
|
|
Rank: Newbie
Groups: Registered
Joined: 1/4/2019(UTC) Posts: 6 ![United States United States](/Content/images/flags/US.png)
|
|
|
|
|
Rank: Member
Groups: Registered
Joined: 1/22/2021(UTC) Posts: 16 ![Man Man](/Themes/yafpro/male.gif) ![Czech Republic Czech Republic](/Content/images/flags/CZ.png) Thanks: 5 times
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 11/2/2018(UTC) Posts: 44 ![Malawi Malawi](/Content/images/flags/MW.png) Location: Blantyre Thanks: 6 times
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 9/10/2015(UTC) Posts: 133 ![United States United States](/Content/images/flags/US.png) Thanks: 2 times Was thanked: 35 time(s) in 32 post(s)
|
Not a direct answer but if you're okay with XAML titles (different under the hood than GT) you could do something like this: Code:<UserControl Width="1920" Height="1080" Panel.ZIndex="500" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:mtl="clr-namespace:vMixTitleLibrary;assembly=vMixTitleLibrary">
<Grid Width="1920" Height="1080">
<FlowDocumentScrollViewer VerticalScrollBarVisibility="Hidden" InputMethod.IsInputMethodEnabled="False">
<FlowDocument>
<Paragraph>
<TextBlock Text="First 1" Name="First1" Foreground="#FFFFFFFF" FontSize="64"/>
<TextBlock Text="Last 1" Name="Last1" Foreground="#FFFFFFFF" FontSize="64" Margin="10,0,0,0" />
<LineBreak />
<TextBlock Text="First 2" Name="First2" Foreground="#FFFFFFFF" FontSize="64"/>
<TextBlock Text="Last 2" Name="Last2" Foreground="#FFFFFFFF" FontSize="64" Margin="10,0,0,0" />
<LineBreak />
<TextBlock Text="First 3" Name="First3" Foreground="#FFFFFFFF" FontSize="64"/>
<TextBlock Text="Last 3" Name="Last3" Foreground="#FFFFFFFF" FontSize="64" Margin="10,0,0,0" />
<LineBreak />
</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
<Image Stretch="Fill" Width="1920" Height="1080" HorizontalAlignment="Left" VerticalAlignment="Top" Panel.ZIndex="0" />
</Grid>
</UserControl>
The TextBlock element is dynamic in width unlink vMix's mtl:TextBlockDesign. However, the vMix title interface still happens to work with TextBlock for color, font, style, etc.
|
|
|
|
vMix Forums
»
General
»
Feature Requests
»
GT Titler dynamic text field sizes
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