View Single Post
  #5 (permalink)  
Old 07-12-2009, 03:41 PM
dro's Avatar
dro
PPCGeeks Regular
Offline
Location: DETROIT
 
Join Date: Apr 2009
Posts: 224
Reputation: 210
dro is keeping up the good workdro is keeping up the good workdro is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Titanium LCD Font

Quote:
Originally Posted by raidzero View Post
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!

can u give me a step by step process on editing the fonts...i did as u mentioned b4 for some reason its not doing anything for me...the symbols and numbers r shown in my font after editing, as for i see them in the font when i open it back up in FONT CREATOR...i must b missing something somewhere...i REALLY want to get this to work....
__________________
make sure you THANK everyone who has helped you or lead you in the right direction in solving your issue
Reply With Quote