How do I increase the Font (point) size? (1 Viewer)

xmen020

New Member
February 25, 2007
3
0
81
Great plugin!

I have searched around looking for the exact section of the MyLyrics.xml that I would modify to increase the font size but am not sure which one to try.

Has anyone been able to increase the size or know which section it is?

TIA!


:confused: :D
 

Doodles

Portal Pro
September 9, 2006
84
14
Home Country
United Kingdom United Kingdom
Hi! I Assume you mean the font size of the lyrics. If so, I believe you want the control:

Code:
      <type>textbox</type>
      <description>The Lyric area</description>

Locate the <font> line and change the font-id to the one you want. E.g change font14 to font16. (The file fonts.xml shows the font-ids that are available and what they apply to.)

Hope this helps.
 

xmen020

New Member
February 25, 2007
3
0
81
:D Thanks for the reply. In the section you listed their is no font line. I modified the code by inserting font code (see below). However it did not work any ideas?

Code:
  <text>6</text>
         <SpinPosX>48</SpinPosX>
         <SpinPosY>440</SpinPosY>
      </control>
      <control>
         <type>textbox</type>
         <description>The Lyric area</description>
         <id>21</id>
         <posX>48</posX>
         <posY>104</posY>
         <width>640</width>
         <height>336</height>
         <onleft>2</onleft>
         <onright>2</onright>
         <onup>2</onup>
         <ondown>2</ondown>
         <image>icon-folder.png</image>
         <label>-</label>
    <font>
    <name>font16</name>
    <filename>Franklin Gothic Medium</filename>
    <height>16</height>
    <start>0</start>
    <end>1536</end>
  </font>


Original Code:

Code:
         <text>6</text>
         <SpinPosX>48</SpinPosX>
         <SpinPosY>440</SpinPosY>
      </control>
      <control>
         <type>textbox</type>
         <description>The Lyric area</description>
         <id>21</id>
         <posX>48</posX>
         <posY>104</posY>
         <width>640</width>
         <height>336</height>
         <onleft>2</onleft>
         <onright>2</onright>
         <onup>2</onup>
         <ondown>2</ondown>
         <image>icon-folder.png</image>
         <label>-</label>
 

Doodles

Portal Pro
September 9, 2006
84
14
Home Country
United Kingdom United Kingdom
Sorry, I must have already modified mine to change the font size. Instead of the <font>...</font> section, add just the one line:

Code:
<font>font16</font>
.

Here's what I have in mine:

Code:
    <control>
      <type>textbox</type>
      <description>The Lyric area</description>
      <id>21</id>
      <posX>110</posX>
      <posY>100</posY>
      <width>1160</width>
      <height>520</height>
      <onleft>2</onleft>
      <onright>2</onright>
      <onup>2</onup>
      <ondown>2</ondown>
      <image>icon-folder.png</image>
      <label>-</label>
      <seperator>----------------------------------------------------------------------------------------------</seperator>
      <text>6</text>
      <font>font14</font>
      <SpinPosX>48</SpinPosX>
      <SpinPosY>442</SpinPosY>
    </control>

Hope this helps.
 

Users who are viewing this thread

Top Bottom