It is currently March 29th, 2024, 4:01 pm

How do I make a tally counter?

Get help with creating, editing & fixing problems with skins
Greyrat
Posts: 28
Joined: July 8th, 2016, 10:28 am

How do I make a tally counter?

Post by Greyrat »

I'm trying to make a tally counter.How do I go about doing this?
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: How do I make a tally counter?

Post by jsmorley »

Care to be a bit more specific?
Greyrat
Posts: 28
Joined: July 8th, 2016, 10:28 am

Re: How do I make a tally counter?

Post by Greyrat »

I want to do a meter that whenever i perform an action, the value shown changes.
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: How do I make a tally counter?

Post by jsmorley »

Code: Select all

[Rainmeter]
Update=1000
DynamicWindowSize=1
AccurateText=1

[MeasureCounter]
Measure=Calc
Formula=0
UpdateDivider=-1

[MeterCounter]
Meter=String
MeasureName=MeasureCounter
FontSize=100
FontWeight=400
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
DynamicVariables=1
LeftMouseUpAction=[!SetOption MeasureCounter Formula "([MeasureCounter] + 1)"][!UpdateMeasure *][!UpdateMeter *][!Redraw]
Greyrat
Posts: 28
Joined: July 8th, 2016, 10:28 am

Re: How do I make a tally counter?

Post by Greyrat »

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

Re: How do I make a tally counter?

Post by jsmorley »

Greyrat wrote:Thank you,very much.
Glad to help.