View Single Post
  #4 (permalink)  
Old 07-12-2009, 03:15 PM
raidzero's Avatar
raidzero
N00b
Offline
Threadstarter
Location: PPCG
 
Join Date: Dec 2008
Posts: 2,193
Reputation: 5220
raidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the communityraidzero is a trusted member of the community
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via MSN to raidzero
Re: Titanium LCD Font

to those who need to change font sizes: it is done in the CPR:
I will use the clock as the example and italicize the lines containing font size:
Code:
 <Layer ID="ClockExpanded" Visible="False" Width="480" Height="164" Clip="False">
    <Layer ID="Page" Clip="False">
      <!-- Icon in the upper right-->
      <Image ID="Icon" Left="376" Top="-26" Width="86" Height="114" />
      <!-- Title text -->
      <Text ID="Network Name" Left="20" Top="104" Width="348" Height="36" FontFamily="Calligraph421 BT" FontSize="9" FontStyle="Regular"  Wrap="False" VerticalAlignment="Top" Trimming="EllipsisCharacter">
        <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
        <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
      </Text>

      <!-- Time -->
      <Text ID="Time" Left="20" Top="22" Width="186" Height="90" FontFamily="Calligraph421 BT" FontSize="28" FontStyle="Regular"  Wrap="False" VerticalAlignment="Top" HorizontalAlignment="Right" Trimming="EllipsisCharacter">
        <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
        <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
      </Text>

      <!-- AM/PM -->
      <Text ID="AMPM" Left="226" Top="36" Width="142" Height="36" FontFamily="Calligraph421 BT" FontSize="9" FontStyle="Regular"  Wrap="False" VerticalAlignment="Top" Trimming="EllipsisCharacter">
        <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
        <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
      </Text>

      <!-- Date -->
      <Text ID="Date" Left="226" Top="66" Width="142" Height="36" FontFamily="Calligraph421 BT" FontSize="9" FontStyle="Regular"  Wrap="False" VerticalAlignment="Top" Trimming="EllipsisCharacter">
        <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
        <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
      </Text>

      <!-- Alarm -->
      <Image ID="Alarm" Left="428" Top="28" Width="34" Height="60"/>
      <!-- WiFi -->
      <Text ID="WiFi" Left="226" Top="104" Width="380" Height="38" FontFamily="Calligraph421 BT" FontSize="9" FontStyle="Regular"  Wrap="False" HorizontalAlignment="Left" Trimming="EllipsisCharacter">
        <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
        <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
      </Text>

    </Layer>
  </Layer>
  <Layer ID="ClockCondensed" Visible="False" Width="480" Height="68">
    <Layer ID="Page">
      <Text ID="Text 2" Left="20" Top="8" Width="440" Height="68" FontFamily="Calligraph421 BT" FontSize="18" FontStyle="Regular"  Wrap="False" VerticalAlignment="Top" Trimming="EllipsisCharacter" >
        <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
        <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
      </Text>
      <!-- AM/PM -->
      <Text ID="AMPM" Left="0" Top="8" Width="100" Height="40" FontFamily="Calligraph421 BT" FontSize="10.5" FontStyle="Regular"  Wrap="False" VerticalAlignment="Top" Trimming="EllipsisCharacter">
        <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
        <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
      </Text>
as far as editing fonts that is another thing. you need to open up arial or calibri, a font that comes with windows, find the part you want, remember its name, and just add it to the font. test it in notepad first so you dont waste time with soft resets and waiting for the windows folder to load its contents in activesync!
__________________
Reply With Quote