View Single Post
Old 10-09-2007, 08:31 PM   #9 (permalink)
Der Alta
 
Join Date: Aug 2007
Location: South of Boston
Posts: 1,364
Thanks: 61
Thanked 349 Times in 294 Posts
Der Alta is on a distinguished road
Default

This is from the HomerX screen:
Quote:
<!-- Messaging Plugin -->
<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="SMScount" height="20">
<background b-border-width="0">
</background>
<label halign="right" h="18" x="0" y="-2" w="320" font-size="16" padding-right="0">
<text> Email / Texts: <unreadEmail/> SMS: <unreadSMS/> Voicemail: <unreadVMail/></text>
</label>
</plugin>
This gives the result of
Quote:
Email / Texts: 0 SMS: 0 Voicemail: 0
Changing it to
Quote:
<!-- Messaging Plugin -->
<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="SMScount" height="20">
<background b-border-width="0">
</background>
<label halign="right" h="18" x="0" y="-2" w="320" font-size="16" padding-right="0">
<text> Email / Texts: <unreadEmail/></text>
</label>
</plugin>
Results in
Quote:
Email / Texts: 0
Now adding a second <label> section like this:
Quote:
<!-- Messaging Plugin -->
<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="SMScount" height="40">
<background b-border-width="0">
</background>
<label halign="right" h="18" x="0" y="-2" w="320" font-size="16" padding-right="0">
<text> Email / Texts: <unreadEmail/></text>
</label>
<label halign="right" h="18" x="0" y="18" w="320" font-size="16" padding-right="0">
<text> SMS: <unreadSMS/></text>
</label>
</plugin>
Will results in this:
Quote:
Email / Texts: 0
SMS: 0

Last edited by Der Alta; 10-10-2007 at 04:54 AM.
Der Alta is offline   Reply With Quote