First of all, before I even say anything I will say the theme I am using is one of Eko's theme's, specifically the Punisher one and I was just trying to do some modifications to it.
The only thin I didn't like about it was the general message thing, you click it and it takes you to your message box "Which for my original Q doesn't not include voicemail" so I figured it would be easy, I just take some parts of codes from the themes that come on the q, and add it to the XML for the punisher theme.
It worked, but now the Vmail is one notch higher than the e-mail and text, so it looks weird
Quote:
<!-- Voice Mail PLugin -->
<plugin clsid="{DCE58428-275E-491f-B835-F2AC38D0CC17}" name="voicemail" height="20" width="320">
<label y="4" x="38">
<format state="unselected" halign="left" bgcolor="transparent" fgcolor="#FFFFFF" font-weight="normal" font-size="16"/>
<format state="selected" halign="left" bgcolor="transparent" fgcolor="#eefd00" font-weight="bold" font-size="16"/>
<text><unreadVMail/></text>
</label>
</plugin>
<!-- Messages Plugin -->
<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="SMScount" height="20" width="320">
<label y="4" x="97">
<format state="unselected" halign="left" bgcolor="transparent" fgcolor="#FFFFFF" font-weight="normal" font-size="16"/>
<format state="selected" halign="left" bgcolor="transparent" fgcolor="#eefd00" font-weight="bold" font-size="16"/>
<text><unreadEmail/></text>
</label>
<label y="4" x="154">
<format state="unselected" halign="left" bgcolor="transparent" fgcolor="#FFFFFF" font-weight="normal" font-size="16"/>
<format state="selected" halign="left" bgcolor="transparent" fgcolor="#eefd00" font-weight="bold" font-size="16"/>
<text> <unreadSMS/></text>
</label>
</plugin>
|
That is what I have come up with it works, but the E-mail and SMS is about 20 pixels lower than the voicemail and I cannot for the life of me figure out how to make them even. I tried using various Y co-ordinants, but if you make it too much then the 0, 0 just disappears.
Anyone have any ideas? I'm kind of an XML noob, just learning as I go along
P.S.
This is the original coding for the whole V-mail, E-mail, and SMS line
Quote:
<!-- Messages Plugin -->
<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="SMScount" height="20" width="320">
<background b-border-width="0">
</background>
<label y="4" x="38">
<format state="unselected" halign="left" bgcolor="transparent" fgcolor="#FFFFFF" font-weight="normal" font-size="16"/>
<format state="selected" halign="left" bgcolor="transparent" fgcolor="#eefd00" font-weight="bold" font-size="16"/>
<text><unreadVMail/></text>
</label>
<label y="4" x="97">
<format state="unselected" halign="left" bgcolor="transparent" fgcolor="#FFFFFF" font-weight="normal" font-size="16"/>
<format state="selected" halign="left" bgcolor="transparent" fgcolor="#eefd00" font-weight="bold" font-size="16"/>
<text><unreadEmail/></text>
</label>
<label y="4" x="154">
<format state="unselected" halign="left" bgcolor="transparent" fgcolor="#FFFFFF" font-weight="normal" font-size="16"/>
<format state="selected" halign="left" bgcolor="transparent" fgcolor="#eefd00" font-weight="bold" font-size="16"/>
<text> <unreadSMS/></text>
</label>
</plugin>
|