Reply to thread

Just open the font.xml file and add some new font code.


All you have to do is make sure that it’s called something different.

e.g.

[code]

  <font>

    <name>font24</name>

    <filename>Arial</filename>

    <height>24</height>

  </font>


  <font>

    <name>font24Narrow</name>

    <filename>Arial Narrow</filename>

    <height>24</height>

  </font>

[/code]


Now each time you wish to use your new font just use the name,

e.g.


<control>

....

<label>SAMPLE</label>

<fomt>font24Narrow</font>

...

</control>


Top Bottom