What?!?! You won't just take my word for it?!?! ;-)
Well, SURE I do, but I just wanted to 'read' them.
)))
Thanks, Keith.
Kelly said:
Err-uhmm, examples needed here, Keith.
)
What?!?! You won't just take my word for it?!?! ;-)
OK.....here it is:
ResBuild (my preference) or ResHacker is needed to view/modify the .msstyles
file. The uxtheme.dll patch is needed to use modified/unsigned .msstyles
files.
Assuming all that is in place
, the following example is based on the
luna.msstyles file:
The .msstyles file has the following resources:
????Bitmap
????COLORNAMES
????COMBODATA
????FILERESNAMES
????MINDEPTH
????ORIGFILENAMES
????PACKTHEM_VERSION
????SIZENAMES
????String Table
????TEXTFILE
? ????EXTRALARGEBLUE_INI
? ????EXTRALARGEHOMESTEAD_INI
? ????EXTRALARGEMETALLIC_INI
? ????LARGEFONTSBLUE_INI
? ????LARGEFONTSHOMESTEAD_INI
? ????LARGEFONTSMETALLIC_INI
? ????NORMALBLUE_INI
? ????NORMALHOMESTEAD_INI
? ????NORMALMETALLIC_INI
? ????THEMES_INI
????Version Info
each of the FontSizeColorName_INI files is a text file with the settings
for that particular size/color combination. To be consistent across all
size/color combos, the change needs to be made in all nine of these files.
In each of the files, locate the following section:
[Status]
SizingMargins = 50, 17, 5, 9
ImageFile = Blue\StatusBackground.bmp
bgtype = imagefile
imageCount = 1
sizingType = Tile
FillColorHint = 236 233 216; Average fill color (beige)
In this section, add a line with the following format:
TextColor = 255 0 255 (that's RedValue GreenValue BlueValue. This example
sets the color to magenta
So you should end up with:
[Status]
SizingMargins = 50, 17, 5, 9
ImageFile = Blue\StatusBackground.bmp
bgtype = imagefile
imageCount = 1
sizingType = Tile
FillColorHint = 236 233 216; Average fill color (beige)
TextColor = 255 0 255
When all changes have been made, compile & save the modified .msstyles file,
then double-click it to apply.
Keith