It is currently May 11th, 2024, 3:56 am

Help I need change 12 to 24 format [SOLVED]

Get help with creating, editing & fixing problems with skins
Crepperface9
Posts: 4
Joined: August 27th, 2020, 7:21 pm

Help I need change 12 to 24 format [SOLVED]

Post by Crepperface9 »

I need change format of my clock Image

My skin:

Code: Select all

[Rainmeter]
Author=http://aidendrew.deviantart.com  -  http://rainmeterdesk.blogspot.com

[Style1]
FontFace=Josefin Sans 
FontSize=130
StringStyle=Bold
FontColor=ffffff
AntiAlias=1

[Style2]
FontFace=Segoe WP Light
FontSize=12
FontColor=ffffff
FontEffectColor=0,0,0,40
AntiAlias=1

[Time1]
Measure=Time
Format=%I

[Time2]
Measure=Time
Format=%M

[Second]
Measure=Time
Format=%S

[MeasureDate]
Measure=Time
Format="%d"

[BG1]
Meter=Image
ImageName=bg.png
X=180
h=250
w=4

[BG2]
Meter=Image
ImageName=bg.png
X=450
h=250
w=4

[BG3]
Meter=Image
ImageName=bg.png
X=720
h=250
w=4


[MeterDate]
Meter=String
MeasureName=MeasureDate
MeterStyle=Style1
X=90
Y=10
StringAlign=Center
AntiAlias=1

[MeterTime1]
Meter=String
MeasureName=Time1
MeterStyle=Style1
X=315
Y=10
StringAlign=Center
AntiAlias=1

[MeterTime2]
Meter=String
MeasureName=Time2
MeterStyle=Style1
X=580
Y=10
StringAlign=Center
AntiAlias=1

[MeterTime3]
Meter=String
MeasureName=Second
MeterStyle=Style1
X=850
Y=10
StringAlign=Center
AntiAlias=1

[Text1]
Meter=STRING
MeterStyle=Style2
Text=Date
X=76
Y=185

[Text2]
Meter=STRING
MeterStyle=Style2
Text=Hour
X=310
Y=185

[Text3]
Meter=STRING
MeterStyle=Style2
Text=Minutes
X=555
Y=185

[Text4]
Meter=STRING
MeterStyle=Style2
Text=Seconds
X=827
Y=185
Last edited by Crepperface9 on August 27th, 2020, 8:04 pm, edited 2 times in total.
User avatar
CyberTheWorm
Posts: 860
Joined: August 22nd, 2016, 11:32 pm
Location: Surrey, B.C., Canada

Re: Help I need change 12 to 24 format

Post by CyberTheWorm »

https://docs.rainmeter.net/manual/measures/time/
This is a link to the time formatting

So changing

Code: Select all

[Time1]
Measure=Time
Format=%I
%I to %H will do it
The only source of knowledge is experience. Albert Einstein
Deviant Art Page
Crepperface9
Posts: 4
Joined: August 27th, 2020, 7:21 pm

Re: Help I need change 12 to 24 format

Post by Crepperface9 »

Thank you