Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Nick Thissen
on
What do you mean with font type? The name / font family name (e.g. Arial or Times New Roman)?

You can use override bindings for Font Color and Font Size, see here: https://atvo.appgineering.com/Forum/Thread/38?postId=40#40

For font family, you could use a script to change the fontname on the fly. If you need it to be different per item in the ticker, probably you'd have to do a loop over all items and apply the font name to each. It may be a bit tricky because I don't think you can just apply the name of the font family, you have to actually get the "FontName" object, either from a system font or from a Font object in your theme.

Perhaps something like this:
foreach (var subwidget in TickerWidget.Ticker.RepeatedSubWidgets)
{
var label = subwidget.Labels.Find("myFontLabel");
label.Font.FontName = FontName.FromSystem("Arial");
}