It is currently January 25th, 2021, 7:32 am
Plugin to count down thinks such as money/other things
-
- Posts: 1
- Joined: July 8th, 2020, 4:24 pm
Plugin to count down thinks such as money/other things
Whenever you click the plugin the amount goes upwards or downwards towards a goal. Does that exist and if not can someone make it exist?
-
- Rainmeter Sage
- Posts: 12108
- Joined: October 11th, 2010, 6:27 pm
- Location: Gheorgheni, Romania
Re: Plugin to count down thinks such as money/other things
Although I'm not sure at all I understood what you need for, I suppose such a plugin is not needed, nor exist. So, what you want? You need to increase / decrease a variable when you click somewhere?
-
- Posts: 4
- Joined: June 5th, 2018, 7:15 pm
Re: Plugin to count down thinks such as money/other things
So, just so we are on the same wavelength, when you say "plugin", do you actually mean a Plugin or a skin?
Either way, you wouldn't need a plugin for that. What you just described is just a basic counter.
Either way, you wouldn't need a plugin for that. What you just described is just a basic counter.
Code: Select all
[Variables]
Int=0
IncStep=1
DecStep=1
[Increase]
Meter=Image
w=100
h=100
SolidColor=127,255,127,127
DynamicVariables=1
LeftMouseUpAction=[!UpdateMeter #CurrentSection#][!SetVariable Int "(#Int#+#IncStep#)"][!WriteKeyValue Variables Int "(#Int#+#IncStep#)"][!Update]
[Decrease]
Meter=Image
x=R
w=100
h=100
SolidColor=255,127,127,127
DynamicVariables=1
LeftMouseUpAction=[!UpdateMeter #CurrentSection#][!SetVariable Int "(#Int#-#DecStep#)"][!WriteKeyValue Variables Int "(#Int#-#DecStep#)"][!Update]