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