Hello all,
Ok I'm trying to modify the font used in my buddy list, and I can't seem to figure out what is my problem... Here is what I did.
SkinInfo.xml
code:
<SkinInfo xmlns="urn:msgpluskins" Version="4">
<Information>
<Name>Test Skin</Name>
<Description>Made by Jeeeee(For Messenger 2009 ONLY)</Description>
<Version>1.0.0</Version>
<BuildNumber>100</BuildNumber>
<Screenshot>
<File>thump.png</File>
</Screenshot>
<Compatibility>
<MsgVersion Major="14" Minor="0"/>
</Compatibility>
</Information>
<Fonts>
<Font><File>fonts/Coconut-Medium.ttf</File></Font>
<Font><File>fonts/Coconut-MediumOblique.ttf</File></Font>
<Font><File>fonts/Coconut-BoldD.ttf</File></Font>
<Font><File>fonts/Coconut-BoldOblique.ttf</File></Font>
<Font><File>fonts/Exocet.TTF</File></Font>
</Fonts>
<Options>
<Messenger>
<ResetUserScene/>
</Messenger>
<Skin>
<!-- User modifiable options -->
<Properties>
<!-- Font Selector -->
<MultiVal Name="FontSel">
<DispLabel>Select the font to use on main windows</DispLabel>
<Values>
<Value DispLabel="Coconut-Medium">Coconut-Medium</Value>
<Value DispLabel="Coconut-MediumOblique">Coconut-MediumOblique</Value>
<Value DispLabel="Coconut-BoldD">Coconut-BoldD</Value>
<Value DispLabel="Coconut-BoldOblique">Coconut-BoldOblique</Value>
<Value DispLabel="NoFont">NoFont</Value>
</Values>
<Default>NoFont</Default>
</MultiVal>
</Properties>
</Skin>
</Options>
<MessengerSkin>
<ResGroup>
<Restrictions>
<MsgVersions>
<Version Major="14" Minor="0"/>
</MsgVersions>
</Restrictions>
<Resources>
<Replace>
<Windows>
<Definitions>
<Definition Id="1002"><File>ui/defs/1002.txt</File></Definition>
</Definitions>
<Styles>
<Style Id="1002"><File>ui/styles/1002.txt</File></Style>
</Styles>
</Windows>
</Replace>
</Resources>
</ResGroup>
</MessengerSkin>
</SkinInfo>
my 1002.txt
code:
<*PlusSkin FileKind(style) MsgVer(5) PlusVer(1) */>
Element
{
<*PlusSkin Conditions(FontSel = "Coconut-Medium")*>fontface:"Coconut-Medium"; Fontsize:15pt; </*PlusSkin*>
<*PlusSkin Conditions(FontSel = "NoFont")*> FontFace:rcstr("msgr",49614); FontSize:rcint("msgr",49615)pt; </*PlusSkin*>
ContentAlign:middleleft;
}
Right now with that code nothing changes the font stays the same!
Thank you!