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
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: