How to change font style in Mediaroom PF application? -


in mediaroom pf application how can change font. in below code

<mrml:tvlabel id="value1" runat="server" **fontstyle="reg16"**              foreground="argb(255,235,235,235)" padding="rect(10,0,0,0)"              style="position: absolute; top: 45px; left: 0px; height: 88px; width: 250px;"              text="-" > 

you can't. can use predefined fonts available on stb/simulator. full list in files styles.xml , skin.xml.

you can find definition this:

  <!-- fonts in system -->   <constant name="tvreg" value="fonts/segoealtmrsb.ttf"/>   <constant name="tvbold" value="fonts/segoealtmrb.ttf"/>   <constant name="tvitalic" value="fonts/segoealtmrsbi.ttf"/>   <constant name="tvbolditalic" value="fonts/segoealtmrbi.ttf"/>   <constant name="tvheader" value="fonts/segoealtmrb.ttf"/> 

and them lot of styles that:

<font stylename="bold16" fontface="@tvbold" fontsize="16"/> 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -