I have it functioning on a few screens, and in addition, I have it nearly functional on a new facade screen. The Profile and Clock share a line. Each are selectable (Clock ?!) but I not both are visible at the same time. SLight little hiccup with it. I've not had the time to sort it out yet, but am hoping to conquer it this weekend.
This is the code I've utilized for it.
Quote:
<!-- Time & Profile -->
<plugin height="52" width="100%" handlekeys="FOCUS" clsid="{A2536C57-6AC2-4c31-9542-B144B0E9D077}">
<format state="selected" font-weight="bold" bgcolor="transparent" fgcolor="#000000" bgtext="#ffffff"/>
<format state="unselected" font-weight="normal" bgcolor="transparent" fgcolor="#ffffff" bgtext="#ffffff"/>
<shortcut width="160">
<plugin clsid="{95976968-45D5-40c9-9779-2B859B1C2FEC}" name="profile" height="20">
<label halign="left" y="4" x="8" bgcolor="transparent" font-size="20">
<text><profile/></text>
</label>
</plugin>
</shortcut>
<shortcut width="160">
<plugin clsid="{E09043DF-510E-4841-B652-388316977A7A}" name="date_time" height="52">
<clock>
<time font-weight="bold" font-size="32" bgtext="transparent" halign="right" fgcolor="#ffffff" mode="12" y="0" x="-4" w="320"/>
</clock>
</plugin>
</shortcut>
</plugin>
|