Tordex Community
Weather Monitor Skin Text Color - Printable Version

+- Tordex Community (http://forum.tordex.com)
+-- Forum: True Launch Bar plugins (http://forum.tordex.com/forum-4.html)
+--- Forum: Plugin features and improvements (http://forum.tordex.com/forum-15.html)
+--- Thread: Weather Monitor Skin Text Color (/thread-991.html)



- jgallen - 11-08-2003

is there anyway to change the color of the weather monitor text color without using the digits.png?


- Q Section - 11-09-2003

Hello jgallen

Shapeshifter is sure to jump in on this one! Big Grin


- shapeshifter - 11-10-2003

I don't know off the top of my head. I'll sit down and try to figure it out when I get more time.


- shapeshifter - 11-12-2003

This was easy enough. Add the following line to the appropriate [DataSlotX] section in your skin.ini file:

color = <r g b>
Where <r g b> is 3 8 bit base 10 numbers (0 to 255) seperated by spaces, representing the red, green, and blue components of the desired color. For instance:

Code:
[DataSlot0]
param = Temperature
SkinText = 0
rect = 0 0 68 13
LabelType = short
LabelRect = 0 0 10 10
font=Verdana
bold=1
italic=0
align=right
ShowUnits = 1
color = 255 0 0

The last line in the code above will make the text for dataslot 0 red.

Enjoy.


- BlueHeaven - 11-12-2003

Cool find, shapeshifter.

Would be neat to be able to change color depending on the value .. maybe in the next version. Smile

Rick.


- Q Section - 11-12-2003

shapeshifter -

HOT, HOT, HOT!!!