View Single Post
  #36 (permalink)  
Old 11-06-2009, 10:00 AM
b4u2's Avatar
b4u2
Halfway to VIP Status
Offline
Location: Iowa
 
Join Date: Dec 2008
Posts: 567
Reputation: 425
b4u2 is becoming a PPCGeeks regularb4u2 is becoming a PPCGeeks regularb4u2 is becoming a PPCGeeks regularb4u2 is becoming a PPCGeeks regularb4u2 is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to b4u2
Re: Titanium Customizations Collection

I found the problem! Now I just need to move it down a little bit.

I tried adding the day of week to my CPR. I edited Titanium 480x640 and 640x480. Here is the clock section and the part I added. What did I do wrong because Titanium will not start after a reset?

<!-- HomeHome==Clock layout templates -->
<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="Segoe" FontSize="8" 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="Segoe" 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="Segoe" FontSize="8" 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="Segoe" FontSize="8" 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>
<!-- Day of Week -->
<Text ID="Day of Week" Left="150" Top="80" Width="140" Height="40" FontFamily="Segoe" FontSize="10" FontStyle="Regular" Wrap="False" HorizontalAlignment="Right" 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" />
</Layer>
</Layer>
<Layer ID="ClockCondensed" Visible="False" Width="480" Height="68">
<Layer ID="Page">
<Image ID="Imagefixed" Source="\Windows\crimsondarkness_clock.png" Left="20" Top="10" Width="51" Height="68" ScaleStyle="Fit" />
<!--rpereira mod so small image shows on the left hand side -->
<Text ID="Text 2" Left="80" Top="8" Width="440" Height="68" FontFamily="Segoe" 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="Segoe" 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>
</Layer>
</Layer>

Last edited by b4u2; 11-06-2009 at 11:06 AM. Reason: Solved Problem