It is currently April 27th, 2024, 3:30 pm

Registry value

Get help with creating, editing & fixing problems with skins
User avatar
balala
Rainmeter Sage
Posts: 16176
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Registry value

Post by balala »

Hello everybody,

I'd like to show a registry value on a skin. For this I wrote a few lines:

[MeterTextReg]
Meter=String
X=34
Y=14
FontColor=70,255,70
FontSize=8
FontFace=#FontName#
StringStyle=BOLD
StringAlign=CENTER
AntiAlias=1
Text=MeasureReg
Hidden=1

But now every time when the value should be showed, appears the MeasureReg text, not the explicit value (the MeasureReg determins the value). How can be done the showing of concrete value, instead of MeasureReg text?

Thank you
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Registry value

Post by jsmorley »

[MeterTextReg]
Meter=String
MeasureName=MeasureReg
X=34
Y=14
FontColor=70,255,70
FontSize=8
FontFace=#FontName#
StringStyle=BOLD
StringAlign=CENTER
AntiAlias=1
Text=MeasureReg
Hidden=1
User avatar
balala
Rainmeter Sage
Posts: 16176
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Registry value

Post by balala »

Thank you.