It is currently April 25th, 2024, 9:01 pm

Make more room in a sequence of images.

Get help with creating, editing & fixing problems with skins
User avatar
JpsCrazy
Posts: 667
Joined: April 18th, 2010, 2:16 pm
Location: NY, USA

Make more room in a sequence of images.

Post by JpsCrazy »

K. So. Let's start this off by saying my brain is dead for today. I've went through like 6 ideas for clocks and this one was somewhat of a mistake that stuck.

Basically, it's the hours and minutes, an the seconds are little dots that appear when there's so many seconds.
So, at 60 seconds (1 minute and 0 seconds) there's 0 dots, 1 second has 1 dot, 2 seconds have 2 dots, etc, but I apparently ran out of room and dot number 59 overlaps dot 1 perfectly, so there's seemingly no 59 dot.
First thought: Crap. Well. I could make every dot 1sq pixel smaller, that should make some more room, right? Well, that apparently breaks my skin and the last few dots don't appear at all. (Okay, that's a lie. I had many, bad, wrong thoughts before I came up with this. This is the one that would seemingly work.)

How else would I be able to fit just 1 dot in the series? Problem is the skin is a rectangle so for it to well look right I need two, one for each side.
Or why is the skin dying when I change the W and H 1 pixel smaller?

Code: Select all

[Rainmeter]
Author=JpsCrazy
Update=250
BackgroundMode=2
SolidColor=00000001
DynamicWindowSize=1
LocalFont="#CURRENTPATH#LEDFont.TTF"

[Variables]
Color=50FF60FF

;--Time and Date--------
[msHours]
Measure=Time
Format=%I
UpdateDivider=4

[msMinutes]
Measure=Time
Format=:%M
UpdateDivider=2

[msSeconds]
Measure=Time
Format=%S

[msDate]
Measure=Time
Format=%A %x

;--Main Clock----------
[mtClock]
Meter=String
MeasureName=msHours
MeasureName2=msMinutes
Text=%1%2
AntiAlias=1
DynamicVariables=1
FontSize=72
FontFace=LEDFont
FontColor=#Color#
StringAlign=Center
X=117
Y=10

;--Date-----------------
[mtDate]
Meter=String
MeasureName=msDate
AntiAlias=1
FontSize=20
FontFace=LEDFont
FontColor=#Color#
StringAlign=Center
X=117
Y=85r

;--Show Seconds---------
[msCalc>0]
Measure=Calc
Formula=msSeconds
IfAboveValue=0
IfAboveAction=!RainmeterShowMeter mtSecond1
IfBelowValue=1
IfBelowAction=!RainmeterHideMeterGroup Seconds

[msCalc>1]
Measure=Calc
Formula=msSeconds
IfAboveValue=1
IfAboveAction=!RainmeterShowMeter mtSecond2

[msCalc>2]
Measure=Calc
Formula=msSeconds
IfAboveValue=2
IfAboveAction=!RainmeterShowMeter mtSecond3

[msCalc>3]
Measure=Calc
Formula=msSeconds
IfAboveValue=3
IfAboveAction=!RainmeterShowMeter mtSecond4

[msCalc>4]
Measure=Calc
Formula=msSeconds
IfAboveValue=4
IfAboveAction=!RainmeterShowMeter mtSecond5

[msCalc>5]
Measure=Calc
Formula=msSeconds
IfAboveValue=5
IfAboveAction=!RainmeterShowMeter mtSecond6

[msCalc>6]
Measure=Calc
Formula=msSeconds
IfAboveValue=6
IfAboveAction=!RainmeterShowMeter mtSecond7

[msCalc>7]
Measure=Calc
Formula=msSeconds
IfAboveValue=7
IfAboveAction=!RainmeterShowMeter mtSecond8

[msCalc>8]
Measure=Calc
Formula=msSeconds
IfAboveValue=8
IfAboveAction=!RainmeterShowMeter mtSecond9

[msCalc>9]
Measure=Calc
Formula=msSeconds
IfAboveValue=9
IfAboveAction=!RainmeterShowMeter mtSecond10

[msCalc>10]
Measure=Calc
Formula=msSeconds
IfAboveValue=10
IfAboveAction=!RainmeterShowMeter mtSecond11

[msCalc>11]
Measure=Calc
Formula=msSeconds
IfAboveValue=11
IfAboveAction=!RainmeterShowMeter mtSecond12

[msCalc>12]
Measure=Calc
Formula=msSeconds
IfAboveValue=12
IfAboveAction=!RainmeterShowMeter mtSecond13

[msCalc>13]
Measure=Calc
Formula=msSeconds
IfAboveValue=13
IfAboveAction=!RainmeterShowMeter mtSecond14

[msCalc>14]
Measure=Calc
Formula=msSeconds
IfAboveValue=14
IfAboveAction=!RainmeterShowMeter mtSecond15

[msCalc>15]
Measure=Calc
Formula=msSeconds
IfAboveValue=15
IfAboveAction=!RainmeterShowMeter mtSecond16

[msCalc>16]
Measure=Calc
Formula=msSeconds
IfAboveValue=16
IfAboveAction=!RainmeterShowMeter mtSecond17

[msCalc>17]
Measure=Calc
Formula=msSeconds
IfAboveValue=17
IfAboveAction=!RainmeterShowMeter mtSecond18

[msCalc>18]
Measure=Calc
Formula=msSeconds
IfAboveValue=18
IfAboveAction=!RainmeterShowMeter mtSecond19

[msCalc>19]
Measure=Calc
Formula=msSeconds
IfAboveValue=19
IfAboveAction=!RainmeterShowMeter mtSecond20

[msCalc>20]
Measure=Calc
Formula=msSeconds
IfAboveValue=20
IfAboveAction=!RainmeterShowMeter mtSecond21

[msCalc>21]
Measure=Calc
Formula=msSeconds
IfAboveValue=21
IfAboveAction=!RainmeterShowMeter mtSecond22

[msCalc>22]
Measure=Calc
Formula=msSeconds
IfAboveValue=22
IfAboveAction=!RainmeterShowMeter mtSecond23

[msCalc>23]
Measure=Calc
Formula=msSeconds
IfAboveValue=23
IfAboveAction=!RainmeterShowMeter mtSecond24

[msCalc>24]
Measure=Calc
Formula=msSeconds
IfAboveValue=24
IfAboveAction=!RainmeterShowMeter mtSecond25

[msCalc>25]
Measure=Calc
Formula=msSeconds
IfAboveValue=25
IfAboveAction=!RainmeterShowMeter mtSecond26

[msCalc>26]
Measure=Calc
Formula=msSeconds
IfAboveValue=26
IfAboveAction=!RainmeterShowMeter mtSecond27

[msCalc>27]
Measure=Calc
Formula=msSeconds
IfAboveValue=27
IfAboveAction=!RainmeterShowMeter mtSecond28

[msCalc>28]
Measure=Calc
Formula=msSeconds
IfAboveValue=28
IfAboveAction=!RainmeterShowMeter mtSecond29

[msCalc>29]
Measure=Calc
Formula=msSeconds
IfAboveValue=29
IfAboveAction=!RainmeterShowMeter mtSecond30

[msCalc>30]
Measure=Calc
Formula=msSeconds
IfAboveValue=30
IfAboveAction=!RainmeterShowMeter mtSecond31

[msCalc>31]
Measure=Calc
Formula=msSeconds
IfAboveValue=31
IfAboveAction=!RainmeterShowMeter mtSecond32

[msCalc>32]
Measure=Calc
Formula=msSeconds
IfAboveValue=32
IfAboveAction=!RainmeterShowMeter mtSecond33

[msCalc>33]
Measure=Calc
Formula=msSeconds
IfAboveValue=33
IfAboveAction=!RainmeterShowMeter mtSecond34

[msCalc>34]
Measure=Calc
Formula=msSeconds
IfAboveValue=34
IfAboveAction=!RainmeterShowMeter mtSecond35

[msCalc>35]
Measure=Calc
Formula=msSeconds
IfAboveValue=35
IfAboveAction=!RainmeterShowMeter mtSecond36

[msCalc>36]
Measure=Calc
Formula=msSeconds
IfAboveValue=36
IfAboveAction=!RainmeterShowMeter mtSecond37

[msCalc>37]
Measure=Calc
Formula=msSeconds
IfAboveValue=37
IfAboveAction=!RainmeterShowMeter mtSecond38

[msCalc>38]
Measure=Calc
Formula=msSeconds
IfAboveValue=38
IfAboveAction=!RainmeterShowMeter mtSecond39

[msCalc>39]
Measure=Calc
Formula=msSeconds
IfAboveValue=39
IfAboveAction=!RainmeterShowMeter mtSecond40

[msCalc>40]
Measure=Calc
Formula=msSeconds
IfAboveValue=40
IfAboveAction=!RainmeterShowMeter mtSecond41

[msCalc>41]
Measure=Calc
Formula=msSeconds
IfAboveValue=41
IfAboveAction=!RainmeterShowMeter mtSecond42

[msCalc>42]
Measure=Calc
Formula=msSeconds
IfAboveValue=42
IfAboveAction=!RainmeterShowMeter mtSecond43

[msCalc>43]
Measure=Calc
Formula=msSeconds
IfAboveValue=43
IfAboveAction=!RainmeterShowMeter mtSecond44

[msCalc>44]
Measure=Calc
Formula=msSeconds
IfAboveValue=44
IfAboveAction=!RainmeterShowMeter mtSecond45

[msCalc>45]
Measure=Calc
Formula=msSeconds
IfAboveValue=45
IfAboveAction=!RainmeterShowMeter mtSecond46

[msCalc>46]
Measure=Calc
Formula=msSeconds
IfAboveValue=46
IfAboveAction=!RainmeterShowMeter mtSecond47

[msCalc>47]
Measure=Calc
Formula=msSeconds
IfAboveValue=47
IfAboveAction=!RainmeterShowMeter mtSecond48

[msCalc>48]
Measure=Calc
Formula=msSeconds
IfAboveValue=48
IfAboveAction=!RainmeterShowMeter mtSecond49

[msCalc>49]
Measure=Calc
Formula=msSeconds
IfAboveValue=49
IfAboveAction=!RainmeterShowMeter mtSecond50

[msCalc>50]
Measure=Calc
Formula=msSeconds
IfAboveValue=50
IfAboveAction=!RainmeterShowMeter mtSecond51

[msCalc>51]
Measure=Calc
Formula=msSeconds
IfAboveValue=51
IfAboveAction=!RainmeterShowMeter mtSecond52

[msCalc>52]
Measure=Calc
Formula=msSeconds
IfAboveValue=52
IfAboveAction=!RainmeterShowMeter mtSecond53

[msCalc>53]
Measure=Calc
Formula=msSeconds
IfAboveValue=53
IfAboveAction=!RainmeterShowMeter mtSecond54

[msCalc>54]
Measure=Calc
Formula=msSeconds
IfAboveValue=54
IfAboveAction=!RainmeterShowMeter mtSecond55

[msCalc>55]
Measure=Calc
Formula=msSeconds
IfAboveValue=55
IfAboveAction=!RainmeterShowMeter mtSecond56

[msCalc>56]
Measure=Calc
Formula=msSeconds
IfAboveValue=56
IfAboveAction=!RainmeterShowMeter mtSecond57

[msCalc>57]
Measure=Calc
Formula=msSeconds
IfAboveValue=57
IfAboveAction=!RainmeterShowMeter mtSecond58

[msCalc>58]
Measure=Calc
Formula=msSeconds
IfAboveValue=58
IfAboveAction=!RainmeterShowMeter mtSecond59


;--Seconds--------------
[mtSecond1]
Meter=Image
SolidColor=#Color#
X=110
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond2]
Meter=Image
SolidColor=#Color#
X=2R
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond3]
Meter=Image
SolidColor=#Color#
X=2R
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond4]
Meter=Image
SolidColor=#Color#
X=2R
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond5]
Meter=Image
SolidColor=#Color#
X=2R
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond6]
Meter=Image
SolidColor=#Color#
X=2R
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond7]
Meter=Image
SolidColor=#Color#
X=2R
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond8]
Meter=Image
SolidColor=#Color#
X=2R
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond9]
Meter=Image
SolidColor=#Color#
X=2R
Y=0
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond10]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond11]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond12]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond13]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond14]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond15]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond16]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond17]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond18]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond19]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond20]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond21]
Meter=Image
SolidColor=#Color#
X=0r
Y=2R
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond21]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond22]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond23]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond24]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond25]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond26]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond27]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond28]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond29]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond30]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond31]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond32]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond33]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond34]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond35]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond36]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond37]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond38]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond39]
Meter=Image
SolidColor=#Color#
X=-12r
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond40]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond41]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond42]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond43]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond44]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond45]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond46]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond47]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond48]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond49]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond50]
Meter=Image
SolidColor=#Color#
X=0r
Y=-12r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond51]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond52]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond53]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond54]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond55]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond56]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond57]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond58]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1

[mtSecond59]
Meter=Image
SolidColor=#Color#
X=2R
Y=0r
W=10
H=10
Group=Seconds
Hidden=1