View Single Post
  #39 (permalink)  
Old 12-01-2009, 11:09 AM
lioryte's Avatar
lioryte
Almost a VIP
Offline
Location: Our house, in the middle of our street
 
Join Date: Mar 2009
Posts: 968
Reputation: 1800
lioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on replioryte is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via MSN to lioryte Send a message via Skype™ to lioryte
Re: Titanium Customizations Collection

Raidzero,

I'm having difficulties trying to post day of the week in lockscreen. I moved the date to the left with .cpr changes but the day never pop up. Is it possible?
Here are my changes using 240x400 device
Code:
    <Layer ID="TimeX" Top="0">
      <Image ID="TimeBG" Width="240" Height="373" Visible="True" Opacity="1.0" ScalingAlgorithm = "TriLinear" Source="\windows\LS_TimeBG.png"/>
      <Layer Top="7" ID="DateTime" OnInitComplete="Binding:LockScreen,LS_ClockDataItem">
        <Text ID="TimeText" Left="40" Width="200" Top="-1" Height="60" FontFamily="Tahoma" FontSize="51" FontStyle="Regular" Wrap="False" HorizontalAlignment="Middle" VerticalAlignment="Middle" Opacity="1.0" >
          <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
          <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
        </Text>
        <Text ID="AMPMText" Left="210" Width="90" Height="16" FontFamily="Tahoma" FontSize="9" FontStyle="Regular" Wrap="False" HorizontalAlignment="Left" VerticalAlignment="Middle" Opacity="1.0" >
          <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
          <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
        </Text>
        <Text ID="DateText" Left="40" Top="57" Width="90" Height="19" FontFamily="Tahoma" FontSize="10" FontStyle="Bold" Wrap="False" HorizontalAlignment="Middle" VerticalAlignment="Middle" Opacity="1.0" >
          <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
          <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
        </Text>
        <Text ID="Day of Week" Left="80" Top="57" Width="90" Height="19" FontFamily="Tahoma" FontSize="10" FontStyle="Bold" Wrap="False" HorizontalAlignment="Middle" VerticalAlignment="Middle" Opacity="1.0" >
           <TextStage TextOffsetType="TextOffsetDropBottomRight" Color="#00000000" TextOffset="1" BlurFactor="3" Alpha="1.0"/>
           <TextStage TextOffsetType="TextOffsetNone" Color="#FFFFFFFF"/>
        </Text>
      </Layer>
    </Layer>
Resulting in



Any help would be greatly appriciated
__________________