It is currently April 27th, 2024, 9:40 am

!ToggleMeter every 1/2 sec?

Get help with creating, editing & fixing problems with skins
User avatar
Cormanthor
Posts: 5
Joined: November 24th, 2011, 5:50 pm

!ToggleMeter every 1/2 sec?

Post by Cormanthor »

I'm trying to make a digital clock. Everything is going well, except the final touch. I would like to toggle the ":" between the hours and minutes one every 1/2 second, such that is is one for 1/2 second, then off for 1/2 second, and so on. I'm just lost on how to include !ToggleMeter such that it runs every cycle. Here's my code. Any help would be greatly appreciated!

Code: Select all

[Rainmeter]
Author=Cormanthor
Update=500

[Metadata]
Name=Clock
Information=A digital clock
Version=2011.12.24
License=GPL v3.0

[Variables]
seperatorColor=148,130,201,128
bgColor=0,0,0,1
width=50

[StyleLarge]
FontColor=255,255,255,128
FontFace=Zekton Rg
FontSize=15
StringEffect=SHADOW
StringAlign=CENTER
AnitAlias=1

[MeasureHour]
Measure=TIME
Format=%H

[MeasureMinute]
Measure=TIME
Format=%M

[MeasureToggle]
!ToggleMeter MeterSep

[MeterBG]
Meter=IMAGE
X=0
Y=0
W=#width#
H=25
SolidColor=#bgColor#

[MeterHour]
Meter=STRING
MeasureName=MeasureHour
MeterStyle=StyleLarge
X=(#width#*0.25)
Y=0

[MeterSep]
Meter=STRING
MeterStyle=StyleLarge
X=((#width#*0.5)-1)
Y=0
Text=":"

[MeterMinute]
Meter=STRING
MeasureName=MeasureMinute
MeterStyle=StyleLarge
X=(#width#*0.75)
Y=0
Some days it's just not worth chewing through the restraints...
User avatar
smurfier
Moderator
Posts: 1931
Joined: January 29th, 2010, 1:43 am
Location: Willmar, MN

Re: !ToggleMeter every 1/2 sec?

Post by smurfier »

Code: Select all

[SepToggle]
Measure=Calc
Formula=1-SepToggle

[MeterSep]
Meter=STRING
MeterStyle=StyleLarge
X=((#width#*0.5)-1)
Y=0
Text=":"
Hidden=[SepToggle]
DynamicVariables=1
GitHub | DeviantArt | Tumblr
This is the song that never ends. It just goes on and on my friends. Some people started singing it not knowing what it was, and they'll continue singing it forever just because . . .
User avatar
Cormanthor
Posts: 5
Joined: November 24th, 2011, 5:50 pm

Re: !ToggleMeter every 1/2 sec?

Post by Cormanthor »

You, Sir, are my new hero!
Thank you and Merry Christmas!
Some days it's just not worth chewing through the restraints...