It is currently April 16th, 2024, 6:16 pm

Meter [Styles] not bound to anything[solved]

Get help with creating, editing & fixing problems with skins
User avatar
Jkon
Posts: 185
Joined: December 4th, 2009, 2:05 am

Re: Meter [Styles] not bound to anything

Post by Jkon »

I'm sorry to have to bring this up again but now I'm getting the error " the meter [Text] is not bound to anything".I have the [Styles] title commented out and I am using the exact same setup in several other skins with no error message.I simply can not see what is different in this case and the more frustrated I get with it the less chance i have of finding the problem,please put me out of my misery.

Code: Select all

; ====================

; [Styles]

[Text]
FontFace=#Face02#
FontSize=70
FontColor=#-#
StringStyle=Bold
StringAlign=Right
AntiAlias=1

; ====================

; [Meters]

[HourValue]
Meter=String
Meterstyle=Text
MeasureName=mHourI
X=370
Y=190
PostFix=:

[AmPmValue]
Meter=String
Meterstyle=Text
MeasureName=mAmPm
X=-10r
Y=50r
FontSize=25
StringAlign=Left

[MinuteValue]
Meter=String
Meterstyle=Text
MeasureName=mMinuteI
X=-5r
Y=-37r
FontSize=35
StringAlign=Left

; --------------------
I've cut the code back to just the meters that referance the style.Again I dont get the message when I reload rainmeter,only when i refresh the skin.
Image
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Meter [Styles] not bound to anything

Post by jsmorley »

Are you quite sure that the variables referenced in these lines are in fact defined properly in the [Variables] section of your skin? You didn't post that part of the skin, so it's hard to tell.

[Text]
FontFace=#Face02#
FontSize=70
FontColor=#-#
StringStyle=Bold
StringAlign=Right
AntiAlias=1
User avatar
Jkon
Posts: 185
Joined: December 4th, 2009, 2:05 am

Re: Meter [Styles] not bound to anything

Post by Jkon »

They are all drawn from a user variable inc that 11 other skins are also using.I'll post the whole skin if you want but it is very long.

Code: Select all

; ====================

[Variables]

@Include=#SKINSPATH#\PodPack\Resources\Documents\User Variables.inc
Graphic=#SKINSPATH#\PodPack\Resources\Graphics\
Image
wasky1
Posts: 127
Joined: June 10th, 2009, 8:26 am

Re: Meter [Styles] not bound to anything

Post by wasky1 »

you look to have string align set left in meter and right in style.
might be worth looking at dunno if this matters
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Meter [Styles] not bound to anything

Post by jsmorley »

Jkon wrote:They are all drawn from a user variable inc that 11 other skins are also using.I'll post the whole skin if you want but it is very long.

Code: Select all

; ====================

[Variables]

@Include=#SKINSPATH#\PodPack\Resources\Documents\User Variables.inc
Graphic=#SKINSPATH#\PodPack\Resources\Graphics\
Just for kicks, can you put quotes around the path wtih a space in it?

@Include="#SKINSPATH#\PodPack\Resources\Documents\User Variables.inc"
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Meter [Styles] not bound to anything

Post by jsmorley »

wasky1 wrote:you look to have string align set left in meter and right in style.
might be worth looking at dunno if this matters
Doesn't matter a bit.

If you have a key=value in a style and also in a meter which uses the style, the meter wins is all.
User avatar
Alex2539
Rainmeter Sage
Posts: 642
Joined: July 19th, 2009, 5:59 am
Location: Montreal, QC, Canada

Re: Meter [Styles] not bound to anything

Post by Alex2539 »

If that doesn't work, go ahead and post the whole skin. I want to take a look at it myself and see if i get the same issue or if it's some freak. If it's really that long, you can zip it up and either host it somewhere like mediafire.com or upload it here on the forum.
ImageImageImageImage
User avatar
Jkon
Posts: 185
Joined: December 4th, 2009, 2:05 am

Re: Meter [Styles] not bound to anything

Post by Jkon »

@ Wasky,What is in the meter should overwrite anything determined in the style but i changed it for kicks with no joy.

@JSmorley,no joy there either.All the other skins have the exact same variable settting also(I generally keep a template skin when doing suites).

I have tried renaming the style also incase of some kind of clash but no luck either.If i remove the style altogether it does stop and i could just write the code full on the meters but i would like to try and find what is actually causing the problem.
Image
wasky1
Posts: 127
Joined: June 10th, 2009, 8:26 am

Re: Meter [Styles] not bound to anything

Post by wasky1 »

is there anyway you can post the full code im curious too, i didnt think my last post made diffrence but thats all i could see in the short code
User avatar
Jkon
Posts: 185
Joined: December 4th, 2009, 2:05 am

Re: Meter [Styles] not bound to anything

Post by Jkon »

Here's the whole code Alex

Code: Select all

[Rainmeter]

Author=JKon
Update=1000
BackGroundMode=2
SolidColor=0,0,0,0
MiddleMouseDownAction=!RainmeterRefresh

; ====================

[Metadata]

Name=
Config=
Description=
Instructions=
Version=
Tags=
License=
Variant=
Preview=

; ====================

[Variables]

@Include=#SKINSPATH#\PodPack\Resources\Documents\User Variables.inc
Graphic=#SKINSPATH#\PodPack\Resources\Graphics

; ====================

; [Styles]

[Text]
FontFace=#Face02#
FontSize=70
FontColor=#-#
StringStyle=Bold
StringAlign=Right
AntiAlias=1

; ====================

; [Measures]

[mAmPm]
Measure		=Time
Format		=%p

[mHour]
Measure		=Time
Format		=%#I

[mHourI]
Measure		=Time
Format		=%I

[mHourPos]
Measure		=Calc
Formula		=(mHour - 1) * 60 + mMinute

[mHourNeg]
Measure		=Calc
Formula		=720 - mHourPos

[mMinute]
Measure		=Time
Format		=%#M

[mMinuteI]
Measure		=Time
Format		=%M

[mMinPos]
Measure		=Calc
Formula		=mMinute * 60 + mSecond

[mMinNeg]
Measure		=Calc
Formula		=3600 - mMinPos

[mSecond]
Measure		=Time
Format		=%#S

[mSecondI]
Measure		=Time
Format		=%S

[mSecPos]
Measure		=Calc
Formula		=mSecond + 1

[mSecNeg]
Measure		=Calc
Formula 	=59 - mSecond

; --------------------

[mHr01+]
Measure		=Calc
Formula		=mHourPos
MinValue	=0
MaxValue	=60

[mHr02+]
Measure		=Calc
Formula		=mHourPos
MinValue	=60
MaxValue	=120

[mHr03+]
Measure		=Calc
Formula		=mHourPos
MinValue	=120
MaxValue	=180

[mHr04+]
Measure		=Calc
Formula		=mHourPos
MinValue	=180
MaxValue	=240

[mHr05+]
Measure		=Calc
Formula		=mHourPos
MinValue	=240
MaxValue	=300

[mHr06+]
Measure		=Calc
Formula		=mHourPos
MinValue	=300
MaxValue	=360

[mHr07+]
Measure		=Calc
Formula		=mHourPos
MinValue	=360
MaxValue	=420

[mHr08+]
Measure		=Calc
Formula		=mHourPos
MinValue	=420
MaxValue	=480

[mHr09+]
Measure		=Calc
Formula		=mHourPos
MinValue	=480
MaxValue	=540

[mHr10+]
Measure		=Calc
Formula		=mHourPos
MinValue	=540
MaxValue	=600

[mHr11+]
Measure		=Calc
Formula		=mHourPos
MinValue	=600
MaxValue	=660

[mHr12+]
Measure		=Calc
Formula		=mHourPos
MinValue	=660
MaxValue	=720

; --------------------

[mHr01-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=660
MaxValue	=720

[mHr02-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=600
MaxValue	=660

[mHr03-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=540
MaxValue	=600

[mHr04-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=480
MaxValue	=540

[mHr05-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=420
MaxValue	=480

[mHr06-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=360
MaxValue	=420

[mHr07-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=300
MaxValue	=360

[mHr08-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=240
MaxValue	=300

[mHr09-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=180
MaxValue	=240

[mHr10-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=120
MaxValue	=180

[mHr11-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=60
MaxValue	=120

[mHr12-]
Measure		=Calc
Formula		=mHourNeg
MinValue	=0
MaxValue	=60

; --------------------

[mMin05+]
Measure		=Calc
Formula		=mMinPos
MinValue	=0
MaxValue	=300

[mMin10+]
Measure		=Calc
Formula		=mMinPos
MinValue	=300
MaxValue	=600

[mMin15+]
Measure		=Calc
Formula		=mMinPos
MinValue	=600
MaxValue	=900

[mMin20+]
Measure		=Calc
Formula		=mMinPos
MinValue	=900
MaxValue	=1200

[mMin25+]
Measure		=Calc
Formula		=mMinPos
MinValue	=1200
MaxValue	=1500

[mMin30+]
Measure		=Calc
Formula		=mMinPos
MinValue	=1500
MaxValue	=1800

[mMin35+]
Measure		=Calc
Formula		=mMinPos
MinValue	=1800
MaxValue	=2100

[mMin40+]
Measure		=Calc
Formula		=mMinPos
MinValue	=2100
MaxValue	=2400

[mMin45+]
Measure		=Calc
Formula		=mMinPos
MinValue	=2400
MaxValue	=2700

[mMin50+]
Measure		=Calc
Formula		=mMinPos
MinValue	=2700
MaxValue	=3000

[mMin55+]
Measure		=Calc
Formula		=mMinPos
MinValue	=3000
MaxValue	=3300

[mMin60+]
Measure		=Calc
Formula		=mMinPos
MinValue	=3300
MaxValue	=3600

; --------------------

[mMin05-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=3300
MaxValue	=3600

[mMin10-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=3000
MaxValue	=3300

[mMin15-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=2700
MaxValue	=3000

[mMin20-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=2400
MaxValue	=2700

[mMin25-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=2100
MaxValue	=2400

[mMin30-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=1800
MaxValue	=2100

[mMin35-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=1500
MaxValue	=1800

[mMin40-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=1200
MaxValue	=1500

[mMin45-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=900
MaxValue	=1200

[mMin50-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=600
MaxValue	=900

[mMin55-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=300
MaxValue	=600

[mMin60-]
Measure		=Calc
Formula		=mMinNeg
MinValue	=0
MaxValue	=300

; --------------------

[mSec05+]
Measure		=Calc
Formula		=mSecPos
MinValue	=0
MaxValue	=5

[mSec10+]
Measure		=Calc
Formula		=mSecPos
MinValue	=5
MaxValue	=10

[mSec15+]
Measure		=Calc
Formula		=mSecPos
MinValue	=10
MaxValue	=15

[mSec20+]
Measure		=Calc
Formula		=mSecPos
MinValue	=15
MaxValue	=20

[mSec25+]
Measure		=Calc
Formula		=mSecPos
MinValue	=20
MaxValue	=25

[mSec30+]
Measure		=Calc
Formula		=mSecPos
MinValue	=25
MaxValue	=30

[mSec35+]
Measure		=Calc
Formula		=mSecPos
MinValue	=30
MaxValue	=35

[mSec40+]
Measure		=Calc
Formula		=mSecPos
MinValue	=35
MaxValue	=40

[mSec45+]
Measure		=Calc
Formula		=mSecPos
MinValue	=40
MaxValue	=45

[mSec50+]
Measure		=Calc
Formula		=mSecPos
MinValue	=45
MaxValue	=50

[mSec55+]
Measure		=Calc
Formula		=mSecPos
MinValue	=50
MaxValue	=55

[mSec60+]
Measure		=Calc
Formula		=mSecPos
MinValue	=55
MaxValue	=60

; --------------------

[mSec05-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=55
MaxValue	=60

[mSec10-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=50
MaxValue	=55

[mSec15-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=45
MaxValue	=50

[mSec20-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=40
MaxValue	=45

[mSec25-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=35
MaxValue	=40

[mSec30-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=30
MaxValue	=35

[mSec35-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=25
MaxValue	=30

[mSec40-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=20
MaxValue	=25

[mSec45-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=15
MaxValue	=20

[mSec50-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=10
MaxValue	=15

[mSec55-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=5
MaxValue	=10

[mSec60-]
Measure		=Calc
Formula		=mSecNeg
MinValue	=0
MaxValue	=5

; ====================

; [Meters]

[Cog]
Meter=Image
ImageName=#Graphic#Cog.png
X=0
Y=0

[HourValue]
Meter=String
Meterstyle=Text
MeasureName=mHourI
X=370
Y=190
PostFix=:

[AmPmValue]
Meter=String
Meterstyle=Text
MeasureName=mAmPm
X=-10r
Y=50r
FontSize=25
StringAlign=Left

[MinuteValue]
Meter=String
Meterstyle=Text
MeasureName=mMinuteI
X=-5r
Y=-37r
FontSize=35
StringAlign=Left

; --------------------

[Hr01Pos]
Meter=Roundline
MeasureName=mHr01+
X=0
Y=0
W=600
H=600
LineColor=#-#
LineLength=240
LineStart=225
StartAngle=4.99164166
RotationAngle=0.468692191
AntiAlias=1
Solid=1

[Hr01Neg]
Meter=Roundline
MeasureName=mHr01-
X=0
Y=0
W=600
H=600
LineColor=#+#
LineLength=240
LineStart=225
StartAngle=5.48033385
RotationAngle=-0.468692191
AntiAlias=1
Solid=1

; --------------------

[Hr02Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr02+
StartAngle=5.51524044

[Hr02Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr02-
StartAngle=6.00393263

; --------------------

[Hr03Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr03+
StartAngle=6.03883921

[Hr03Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr03-
StartAngle=0.244346095

; --------------------

[Hr04Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr04+
StartAngle=0.27925268

[Hr04Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr04-
StartAngle=0.767944871

; --------------------

[Hr05Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr05+
StartAngle=0.802851456

[Hr05Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr05-
StartAngle=1.29154365

; --------------------

[Hr06Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr06+
StartAngle=1.32645023

[Hr06Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr06-
StartAngle=1.81514242

; --------------------

[Hr07Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr07+
StartAngle=1.85004901

[Hr07Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr07-
StartAngle=2.3387412

; --------------------

[Hr08Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr08+
StartAngle=2.37364778

[Hr08Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr08-
StartAngle=2.86233997

; --------------------

[Hr09Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr09+
StartAngle=2.89724656

[Hr09Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr09-
StartAngle=3.38593875

; --------------------

[Hr10Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr10+
StartAngle=3.42084533

[Hr10Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr10-
StartAngle=3.90953752

; --------------------

[Hr11Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr11+
StartAngle=3.94444411

[Hr11Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr11-
StartAngle=4.4331363

; --------------------

[Hr12Pos]
Meter=Roundline
MeterStyle=Hr01Pos
MeasureName=mHr12+
StartAngle=4.46804289

[Hr12Neg]
Meter=Roundline
MeterStyle=Hr01Neg
MeasureName=mHr12-
StartAngle=4.95673508

; ----------------------------------------

[Min05Pos]
Meter=Roundline
MeasureName=mMin05+
X=0
Y=0
W=600
H=600
LineColor=#-#
LineLength=220
LineStart=210
StartAngle=4.72984227
RotationAngle=0.468692191
AntiAlias=1
Solid=1

[Min05Neg]
Meter=Roundline
MeasureName=mMin05-
X=0
Y=0
W=600
H=600
LineColor=#+#
LineLength=220
LineStart=210
StartAngle=5.21853446
RotationAngle=-0.468692191
AntiAlias=1
Solid=1

; --------------------

[Min10Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin10+
StartAngle=5.25344105

[Min10Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin10-
StartAngle=5.74213324

; --------------------

[Min15Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin15+
StartAngle=5.77703982

[Min15Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin15-
StartAngle=6.26573201

; --------------------

[Min20Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin20+
StartAngle=0.0174532925

[Min20Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin20-
StartAngle=0.506145483

; --------------------

[Min25Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin25+
StartAngle=0.541052068

[Min25Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin25-
StartAngle=1.02974426

; --------------------

[Min30Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin30+
StartAngle=1.06465084

[Min30Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin30-
StartAngle=1.55334303

; --------------------

[Min35Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin35+
StartAngle=1.58824962

[Min35Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin35-
StartAngle=2.07694181

; --------------------

[Min40Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin40+
StartAngle=2.11184839

[Min40Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin40-
StartAngle=2.60054059

; --------------------

[Min45Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin45+
StartAngle=2.63544717

[Min45Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin45-
StartAngle=3.12413936

; --------------------

[Min50Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin50+
StartAngle=3.15904595

[Min50Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin50-
StartAngle=3.64773814

; --------------------

[Min55Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin55+
StartAngle=3.68264472

[Min55Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin55-
StartAngle=4.17133691

; --------------------

[Min60Pos]
Meter=Roundline
MeterStyle=Min05Pos
MeasureName=mMin60+
StartAngle=4.2062435

[Min60Neg]
Meter=Roundline
MeterStyle=Min05Neg
MeasureName=mMin60-
StartAngle=4.69493569

; ----------------------------------------

[Sec05Pos]
Meter=Roundline
MeasureName=mSec05+
X=0
Y=0
W=600
H=600
LineColor=#-#
LineLength=205
LineStart=195
StartAngle=4.72984227
RotationAngle=0.468692191
AntiAlias=1
Solid=1

[Sec05Neg]
Meter=Roundline
MeasureName=mSec05-
X=0
Y=0
W=600
H=600
LineColor=#+#
LineLength=205
LineStart=195
StartAngle=5.21853446
RotationAngle=-0.468692191
AntiAlias=1
Solid=1
Hidden=0

; --------------------

[Sec10Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec10+
StartAngle=5.25344105

[Sec10Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec10-
StartAngle=5.74213324

; --------------------

[Sec15Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec15+
StartAngle=5.77703982

[Sec15Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec15-
StartAngle=6.26573201

; --------------------

[Sec20Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec20+
StartAngle=0.0174532925

[Sec20Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec20-
StartAngle=0.506145483

; --------------------

[Sec25Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec25+
StartAngle=0.541052068

[Sec25Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec25-
StartAngle=1.02974426

; --------------------

[Sec30Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec30+
StartAngle=1.06465084

[Sec30Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec30-
StartAngle=1.55334303

; --------------------

[Sec35Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec35+
StartAngle=1.58824962

[Sec35Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec35-
StartAngle=2.07694181

; --------------------

[Sec40Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec40+
StartAngle=2.11184839

[Sec40Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec40-
StartAngle=2.60054059

; --------------------

[Sec45Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec45+
StartAngle=2.63544717

[Sec45Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec45-
StartAngle=3.12413936

; --------------------

[Sec50Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec50+
StartAngle=3.15904595

[Sec50Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec50-
StartAngle=3.64773814

; --------------------

[Sec55Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec55+
StartAngle=3.68264472

[Sec55Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec55-
StartAngle=4.17133691

; --------------------

[Sec60Pos]
Meter=Roundline
MeterStyle=Sec05Pos
MeasureName=mSec60+
StartAngle=4.2062435

[Sec60Neg]
Meter=Roundline
MeterStyle=Sec05Neg
MeasureName=mSec60-
StartAngle=4.69493569
Image