It is currently March 29th, 2024, 2:51 pm

ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Get help with creating, editing & fixing problems with skins
User avatar
hyprdmg
Posts: 44
Joined: May 23rd, 2010, 5:05 pm

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by hyprdmg »

oZone wrote: September 6th, 2019, 2:42 pm If it's working you can always change SolidColor=255,0,0,100 back to SolidColor=0,0,0,1
That's the plan. Just had the color on still to check and make sure it was working.
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by balala »

Ok, now a little bit of explanation.
Whit the last code when the skin is loaded / refreshed, on the very first moment the FileView plugin measures don't return nothing, because there are needed a few moments until the measures get their value. But because the skin is never updated (due to the Update=-1 option of the [Rainmeter] section), when the FileView plugin measures get their values, the [LinkXX] meters should get their sizes, but they are hidden (due to the added Hidden=1 options) and the size of the hidden meter is zero. Due to this, the heights of the [MeterMouseHoverXX] meters are zero (their widths are 35), so they are not visible. When the meters belonging to the GameGroup group are shown, due to the Update=-1 option, the meters are not updated, so their sizes (heights) are still zero, so they are not visible and the mouse doesn't interact with them. In this case you have to update them and this might be done through an appropriate bang, added near the bang which shows the group. So one way to do this is by add the Group=GameGroup option to all of the [MeterMouseHoverXX] meters (as hyprdmg said he did) then replace the MouseOverAction option of the [MouseOverBar] meter with the following one: MouseOverAction=[!ShowMeterGroup "GameGroup"][!UpdateMeterGroup "GameGroup"][!Redraw]. This way when the meters are shown, they are updated as well and you'll get working the mouse over actions.
Additionally a Hidden=1 option should be added to the [MeterMouseHoverXX] meters as well.
With all this, my proposal is the following one:

Code: Select all

[Rainmeter]
Update=-1
SolidColor=0,0,0,1
DynamicWindowSize=1

[Metadata]
Name=Gameview
Author= Vicious Ned and Dylan Key

[Variables]
TextColour=192,192,192
ShortcutColour=0,0,0,1
MouseOverColour=50,205,50
TextSize=12
Font=Segoe UI
AntiAlias=1
ScreenWidth=#SCREENAREAWIDTH@2#
ScreenHeight=#SCREENAREAHEIGHT@2#
BarWidth=720
TopMargin=10
Spacing=15
LinkArea=26
NumOfApps=(#ScreenHeight#/(#TextSize#+#Spacing#))
WW=15
L1M=15
L2M=15
L3M=15
L4M=15
L5M=15
L6M=15
L7M=15
L8M=15
L9M=15
L10M=15
L11M=15
L12M=15
L13M=15
L14M=15
L15M=15
L16M=15
L17M=15
L18M=15
L19M=15
L20M=15
L21M=15
L22M=15
L23M=15
L24M=15
L25M=15
L26M=15
L27M=15
L28M=15
L29M=15
L30M=15
L31M=15
L32M=15
L33M=15
L34M=15
L35M=15
L36M=15
L37M=15
L38M=15
L39M=15
L40M=15

[MeasureFolder]
Measure=Plugin
Plugin=FileView
Path=#SKINSPATH#
Count=#NumOfApps#
ShowDotDot=0
HideExtensions=1


;*****MEASURES*****


[mLink1]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=1

[mName1]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=1

[mLink2]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=2
[mName2]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=2

[mLink3]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=3
[mName3]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=3

[mLink4]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=4
[mName4]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=4

[mLink5]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=5
[mName5]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=5

[mLink6]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=6
[mName6]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=6

[mLink7]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=7
[mName7]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=7

[mLink8]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=8
[mName8]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=8

[mLink9]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=9
[mName9]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=9

[mLink10]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=10
[mName10]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=10

[mLink11]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=11
[mName11]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=11

[mLink12]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=12
[mName12]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=12

[mLink13]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=13
[mName13]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=13

[mLink14]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=14
[mName14]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=14

[mLink15]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=15
[mName15]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=15

[mLink16]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=16
[mName16]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=16

[mLink17]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=17
[mName17]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=17

[mLink18]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=18
[mName18]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=18

[mLink19]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=19
[mName19]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=19

[mLink20]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=20
[mName20]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=20

[mLink21]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=21
[mName21]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=21

[mLink22]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=22
[mName22]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=22

[mLink23]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=23
[mName23]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=23

[mLink24]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=24
[mName24]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=24

[mLink25]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=25
[mName25]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=25

[mLink26]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=26
[mName26]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=26

[mLink27]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=27
[mName27]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=27

[mLink28]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=28
[mName28]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=28

[mLink29]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=29
[mName29]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=29

[mLink30]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=30
[mName30]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=30

[mLink31]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=31
[mName31]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=31

[mLink32]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=32
[mName32]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=32

[mLink33]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=33
[mName33]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=33

[mLink34]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=34
[mName34]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=34

[mLink35]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=35
[mName35]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=35

[mLink36]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=36
[mName36]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=36

[mLink37]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=37
[mName37]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=37

[mLink38]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=38
[mName38]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=38

[mLink39]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=39
[mName39]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=39

[mLink40]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=40
[mName40]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=40


;*****METERS*****


[MouseOverBar]
Meter=Image
W=1
H=#ScreenHeight#
SolidColor=0,0,0,1
MouseOverAction=[!ShowMeterGroup "GameGroup"][!UpdateMeterGroup "GameGroup"][!Redraw]
MouseScrollDownAction=[!CommandMeasure mLink][!IndexUp]
MouseScrollUpAction=[!CommandMeasure mLink] [!IndexDown]

[View]
Meter=Image
Group=GameGroup
W=#ScreenWidth#
H=#ScreenHeight#
PreserveAspectRatio=2
Hidden=1
DynamicVariables=1
ImageName=""

[Background]
Meter=Image
MeasureName=MeasureScroll
Group=GameGroup
SolidColor=22,22,29
;SolidColor2=22,22,29,0
W=#BarWidth#
H=#ScreenHeight#
AntiAlias=1
Hidden=1
;MouseLeaveAction=[!HideMeterGroup GameGroup][!Update]
MouseScrollDownAction=[!CommandMeasure "MeasureFolder" IndexDown][!Update]
MouseScrollUpAction=[!CommandMeasure "MeasureFolder" IndexUp][!Update]


;*****Animation Stuff*****


[MeasureSlide]
Measure=Plugin
Plugin=ActionTimer

ActionList1=Repeat Right1,#WW#,5
Right1=[!SetVariable L1M "(Clamp(#L1M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link1][!Redraw]
ActionList2=Repeat Left1,#WW#,5
Left1=[!SetVariable L1M "(Clamp(#L1M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link1][!Redraw]

ActionList3=Repeat Right2,#WW#,5
Right2=[!SetVariable L2M "(Clamp(#L2M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link2][!Redraw]
ActionList4=Repeat Left2,#WW#,5
Left2=[!SetVariable L2M "(Clamp(#L2M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link2][!Redraw]

ActionList5=Repeat Right3,#WW#,5
Right3=[!SetVariable L3M "(Clamp(#L3M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link3][!Redraw]
ActionList6=Repeat Left3,#WW#,5
Left3=[!SetVariable L3M "(Clamp(#L3M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link3][!Redraw]

ActionList7=Repeat Right4,#WW#,5
Right4=[!SetVariable L4M "(Clamp(#L4M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link4][!Redraw]
ActionList8=Repeat Left4,#WW#,5
Left4=[!SetVariable L4M "(Clamp(#L4M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link4][!Redraw]

ActionList9=Repeat Right5,#WW#,5
Right5=[!SetVariable L5M "(Clamp(#L5M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link5][!Redraw]
ActionList10=Repeat Left5,#WW#,5
Left5=[!SetVariable L5M "(Clamp(#L5M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link5][!Redraw]

ActionList11=Repeat Right6,#WW#,5
Right6=[!SetVariable L6M "(Clamp(#L6M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link6][!Redraw]
ActionList12=Repeat Left6,#WW#,5
Left6=[!SetVariable L6M "(Clamp(#L6M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link6][!Redraw]

ActionList13=Repeat Right7,#WW#,5
Right7=[!SetVariable L7M "(Clamp(#L7M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link7][!Redraw]
ActionList14=Repeat Left7,#WW#,5
Left7=[!SetVariable L7M "(Clamp(#L7M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link7][!Redraw]

ActionList15=Repeat Right8,#WW#,5
Right8=[!SetVariable L8M "(Clamp(#L8M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link8][!Redraw]
ActionList16=Repeat Left8,#WW#,5
Left8=[!SetVariable L8M "(Clamp(#L8M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link8][!Redraw]

ActionList17=Repeat Right9,#WW#,5
Right9=[!SetVariable L9M "(Clamp(#L9M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link9][!Redraw]
ActionList18=Repeat Left9,#WW#,5
Left9=[!SetVariable L9M "(Clamp(#L9M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link9][!Redraw]

ActionList19=Repeat Right10,#WW#,5
Right10=[!SetVariable L10M "(Clamp(#L10M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link10][!Redraw]
ActionList20=Repeat Left10,#WW#,5
Left10=[!SetVariable L10M "(Clamp(#L10M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link10][!Redraw]

ActionList21=Repeat Right11,#WW#,5
Right11=[!SetVariable L11M "(Clamp(#L11M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link11][!Redraw]
ActionList22=Repeat Left11,#WW#,5
Left11=[!SetVariable L11M "(Clamp(#L11M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link11][!Redraw]

ActionList23=Repeat Right12,#WW#,5
Right12=[!SetVariable L12M "(Clamp(#L12M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link12][!Redraw]
ActionList24=Repeat Left12,#WW#,5
Left12=[!SetVariable L12M "(Clamp(#L12M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link12][!Redraw]

ActionList25=Repeat Right13,#WW#,5
Right13=[!SetVariable L13M "(Clamp(#L13M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link13][!Redraw]
ActionList26=Repeat Left13,#WW#,5
Left13=[!SetVariable L13M "(Clamp(#L13M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link13][!Redraw]

ActionList27=Repeat Right14,#WW#,5
Right14=[!SetVariable L14M "(Clamp(#L14M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link14][!Redraw]
ActionList28=Repeat Left14,#WW#,5
Left14=[!SetVariable L14M "(Clamp(#L14M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link14][!Redraw]

ActionList29=Repeat Right15,#WW#,5
Right15=[!SetVariable L15M "(Clamp(#L15M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link15][!Redraw]
ActionList30=Repeat Left15,#WW#,5
Left15=[!SetVariable L15M "(Clamp(#L15M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link15][!Redraw]

ActionList31=Repeat Right16,#WW#,5
Right16=[!SetVariable L16M "(Clamp(#L16M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link16][!Redraw]
ActionList32=Repeat Left16,#WW#,5
Left16=[!SetVariable L16M "(Clamp(#L16M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link16][!Redraw]

ActionList33=Repeat Right17,#WW#,5
Right17=[!SetVariable L17M "(Clamp(#L17M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link17][!Redraw]
ActionList34=Repeat Left17,#WW#,5
Left17=[!SetVariable L17M "(Clamp(#L17M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link17][!Redraw]

ActionList35=Repeat Right18,#WW#,5
Right18=[!SetVariable L18M "(Clamp(#L18M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link18][!Redraw]
ActionList36=Repeat Left18,#WW#,5
Left18=[!SetVariable L18M "(Clamp(#L18M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link18][!Redraw]

ActionList37=Repeat Right19,#WW#,5
Right19=[!SetVariable L19M "(Clamp(#L19M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link19][!Redraw]
ActionList38=Repeat Left19,#WW#,5
Left19=[!SetVariable L19M "(Clamp(#L19M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link19][!Redraw]

ActionList39=Repeat Right20,#WW#,5
Right20=[!SetVariable L20M "(Clamp(#L20M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link20][!Redraw]
ActionList40=Repeat Left20,#WW#,5
Left20=[!SetVariable L20M "(Clamp(#L20M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link20][!Redraw]

ActionList41=Repeat Right21,#WW#,5
Right21=[!SetVariable L21M "(Clamp(#L21M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link21][!Redraw]
ActionList42=Repeat Left21,#WW#,5
Left21=[!SetVariable L21M "(Clamp(#L21M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link21][!Redraw]

ActionList43=Repeat Right22,#WW#,5
Right22=[!SetVariable L22M "(Clamp(#L22M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link22][!Redraw]
ActionList44=Repeat Left22,#WW#,5
Left22=[!SetVariable L22M "(Clamp(#L22M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link22][!Redraw]

ActionList45=Repeat Right23,#WW#,5
Right23=[!SetVariable L23M "(Clamp(#L23M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link23][!Redraw]
ActionList46=Repeat Left23,#WW#,5
Left23=[!SetVariable L23M "(Clamp(#L23M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link23][!Redraw]

ActionList47=Repeat Right24,#WW#,5
Right24=[!SetVariable L24M "(Clamp(#L24M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link24][!Redraw]
ActionList48=Repeat Left24,#WW#,5
Left24=[!SetVariable L24M "(Clamp(#L24M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link24][!Redraw]

ActionList49=Repeat Right25,#WW#,5
Right25=[!SetVariable L25M "(Clamp(#L25M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link25][!Redraw]
ActionList50=Repeat Left25,#WW#,5
Left25=[!SetVariable L25M "(Clamp(#L25M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link25][!Redraw]

ActionList51=Repeat Right26,#WW#,5
Right26=[!SetVariable L26M "(Clamp(#L26M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link26][!Redraw]
ActionList52=Repeat Left26,#WW#,5
Left26=[!SetVariable L26M "(Clamp(#L26M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link26][!Redraw]

ActionList53=Repeat Right27,#WW#,5
Right27=[!SetVariable L27M "(Clamp(#L27M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link27][!Redraw]
ActionList54=Repeat Left27,#WW#,5
Left27=[!SetVariable L27M "(Clamp(#L27M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link27][!Redraw]

ActionList55=Repeat Right28,#WW#,5
Right28=[!SetVariable L28M "(Clamp(#L28M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link28][!Redraw]
ActionList56=Repeat Left28,#WW#,5
Left28=[!SetVariable L28M "(Clamp(#L28M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link28][!Redraw]

ActionList57=Repeat Right29,#WW#,5
Right29=[!SetVariable L29M "(Clamp(#L29M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link29][!Redraw]
ActionList58=Repeat Left29,#WW#,5
Left29=[!SetVariable L29M "(Clamp(#L29M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link29][!Redraw]

ActionList59=Repeat Right30,#WW#,5
Right30=[!SetVariable L30M "(Clamp(#L30M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link30][!Redraw]
ActionList60=Repeat Left30,#WW#,5
Left30=[!SetVariable L30M "(Clamp(#L30M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link30][!Redraw]

ActionList61=Repeat Right31,#WW#,5
Right31=[!SetVariable L31M "(Clamp(#L31M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link31][!Redraw]
ActionList62=Repeat Left31,#WW#,5
Left31=[!SetVariable L31M "(Clamp(#L31M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link31][!Redraw]

ActionList63=Repeat Right32,#WW#,5
Right32=[!SetVariable L32M "(Clamp(#L32M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link32][!Redraw]
ActionList64=Repeat Left32,#WW#,5
Left32=[!SetVariable L32M "(Clamp(#L32M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link32][!Redraw]

ActionList65=Repeat Right33,#WW#,5
Right33=[!SetVariable L33M "(Clamp(#L33M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link33][!Redraw]
ActionList66=Repeat Left33,#WW#,5
Left33=[!SetVariable L33M "(Clamp(#L33M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link33][!Redraw]

ActionList67=Repeat Right34,#WW#,5
Right34=[!SetVariable L34M "(Clamp(#L34M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link34][!Redraw]
ActionList68=Repeat Left34,#WW#,5
Left34=[!SetVariable L34M "(Clamp(#L34M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link34][!Redraw]

ActionList69=Repeat Right35,#WW#,5
Right35=[!SetVariable L35M "(Clamp(#L35M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link35][!Redraw]
ActionList70=Repeat Left35,#WW#,5
Left35=[!SetVariable L35M "(Clamp(#L35M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link35][!Redraw]

ActionList70=Repeat Right36,#WW#,5
Right36=[!SetVariable L36M "(Clamp(#L36M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link36][!Redraw]
ActionList71=Repeat Left36,#WW#,5
Left36=[!SetVariable L36M "(Clamp(#L36M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link36][!Redraw]

ActionList72=Repeat Right37,#WW#,5
Right37=[!SetVariable L37M "(Clamp(#L37M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link37][!Redraw]
ActionList73=Repeat Left37,#WW#,5
Left37=[!SetVariable L37M "(Clamp(#L37M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link37][!Redraw]

ActionList74=Repeat Right38,#WW#,5
Right38=[!SetVariable L38M "(Clamp(#L38M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link38][!Redraw]
ActionList75=Repeat Left38,#WW#,5
Left38=[!SetVariable L38M "(Clamp(#L38M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link38][!Redraw]

ActionList76=Repeat Right39,#WW#,5
Right39=[!SetVariable L39M "(Clamp(#L39M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link39][!Redraw]
ActionList77=Repeat Left39,#WW#,5
Left39=[!SetVariable L39M "(Clamp(#L39M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link39][!Redraw]

ActionList78=Repeat Right40,#WW#,5
Right40=[!SetVariable L40M "(Clamp(#L40M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link40][!Redraw]
ActionList79=Repeat Left40,#WW#,5
Left40=[!SetVariable L40M "(Clamp(#L40M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link40][!Redraw]

DynamicVariables=1


;*****LINKS*****

[Link1]
Meter=String
MeasureName=mName1
H=#LinkArea#
Group=GameGroup
X=#L1M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink1 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover1]
Meter=Image
X=#L1M#
Y=0r
W=([Link1:W]+35)
H=[Link1:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link1 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName1]"][!CommandMeasure MeasureSlide "Stop 2"][!CommandMeasure MeasureSlide "Execute 1"][!Update]
MouseLeaveAction=[!SetOption Link1 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 1"][!CommandMeasure MeasureSlide "Execute 2"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link2]
Meter=String
MeasureName=mName2
Group=GameGroup
H=#LinkArea#
X=#L2M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink2 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover2]
Meter=Image
X=#L2M#
Y=0r
W=([Link2:W]+35)
H=[Link2:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link2 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName2]"][!CommandMeasure MeasureSlide "Stop 4"][!CommandMeasure MeasureSlide "Execute 3"][!Update]
MouseLeaveAction=[!SetOption Link2 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 3"][!CommandMeasure MeasureSlide "Execute 4"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link3]
Meter=String
MeasureName=mName3
Group=GameGroup
H=#LinkArea#
X=#L3M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink3 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover3]
Meter=Image
X=#L3M#
Y=0r
W=([Link3:W]+35)
H=[Link3:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link3 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName3]"][!CommandMeasure MeasureSlide "Stop 6"][!CommandMeasure MeasureSlide "Execute 5"][!Update]
MouseLeaveAction=[!SetOption Link3 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 5"][!CommandMeasure MeasureSlide "Execute 6"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link4]
Meter=String
MeasureName=mName4
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L4M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink4 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover4]
Meter=Image
X=#L4M#
Y=0r
W=([Link4:W]+35)
H=[Link4:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link4 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName4]"][!CommandMeasure MeasureSlide "Stop 8"][!CommandMeasure MeasureSlide "Execute 7"][!Update]
MouseLeaveAction=[!SetOption Link4 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 7"][!CommandMeasure MeasureSlide "Execute 8"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link5]
Meter=String
MeasureName=mName5
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L5M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink5 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover5]
Meter=Image
X=#L5M#
Y=0r
W=([Link5:W]+35)
H=[Link5:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link5 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName5]"][!CommandMeasure MeasureSlide "Stop 10"][!CommandMeasure MeasureSlide "Execute 9"][!Update]
MouseLeaveAction=[!SetOption Link5 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 9"][!CommandMeasure MeasureSlide "Execute 10"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link6]
Meter=String
MeasureName=mName6
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L6M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink6 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover6]
Meter=Image
X=#L6M#
Y=0r
W=([Link6:W]+35)
H=[Link6:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link6 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName6]"][!CommandMeasure MeasureSlide "Stop 12"][!CommandMeasure MeasureSlide "Execute 11"][!Update]
MouseLeaveAction=[!SetOption Link6 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 11"][!CommandMeasure MeasureSlide "Execute 12"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link7]
Meter=String
MeasureName=mName7
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L7M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink7 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover7]
Meter=Image
X=#L7M#
Y=0r
W=([Link7:W]+35)
H=[Link7:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link7 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName7]"][!CommandMeasure MeasureSlide "Stop 14"][!CommandMeasure MeasureSlide "Execute 13"][!Update]
MouseLeaveAction=[!SetOption Link7 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 13"][!CommandMeasure MeasureSlide "Execute 14"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link8]
Meter=String
MeasureName=mName8
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L8M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink8 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover8]
Meter=Image
X=#L8M#
Y=0r
W=([Link8:W]+35)
H=[Link8:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link8 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName8]"][!CommandMeasure MeasureSlide "Stop 16"][!CommandMeasure MeasureSlide "Execute 15"][!Update]
MouseLeaveAction=[!SetOption Link8 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 15"][!CommandMeasure MeasureSlide "Execute 16"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link9]
Meter=String
MeasureName=mName9
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L9M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink9 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover9]
Meter=Image
X=#L9M#
Y=0r
W=([Link9:W]+35)
H=[Link9:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link9 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName9]"][!CommandMeasure MeasureSlide "Stop 18"][!CommandMeasure MeasureSlide "Execute 17"][!Update]
MouseLeaveAction=[!SetOption Link9 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 17"][!CommandMeasure MeasureSlide "Execute 18"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link10]
Meter=String
MeasureName=mName10
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L10M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1

[MeterMouseHover10]
Meter=Image
X=#L10M#
Y=0r
W=([Link10:W]+35)
H=[Link10:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link10 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName10]"][!CommandMeasure MeasureSlide "Stop 20"][!CommandMeasure MeasureSlide "Execute 19"][!Update]
MouseLeaveAction=[!SetOption Link10 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 19"][!CommandMeasure MeasureSlide "Execute 20"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link11]
Meter=String
MeasureName=mName11
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L11M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink11 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover11]
Meter=Image
X=#L11M#
Y=0r
W=([Link11:W]+35)
H=[Link11:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link11 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName11]"][!CommandMeasure MeasureSlide "Stop 22"][!CommandMeasure MeasureSlide "Execute 21"][!Update]
MouseLeaveAction=[!SetOption Link11 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 21"][!CommandMeasure MeasureSlide "Execute 22"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link12]
Meter=String
MeasureName=mName12
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L12M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink12 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover12]
Meter=Image
X=#L12M#
Y=0r
W=([Link12:W]+35)
H=[Link12:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link12 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName12]"][!CommandMeasure MeasureSlide "Stop 24"][!CommandMeasure MeasureSlide "Execute 23"][!Update]
MouseLeaveAction=[!SetOption Link12 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 23"][!CommandMeasure MeasureSlide "Execute 24"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link13]
Meter=String
MeasureName=mName13
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L13M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink13 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover13]
Meter=Image
X=#L13M#
Y=0r
W=([Link13:W]+35)
H=[Link13:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link13 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName13]"][!CommandMeasure MeasureSlide "Stop 26"][!CommandMeasure MeasureSlide "Execute 25"][!Update]
MouseLeaveAction=[!SetOption Link13 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 25"][!CommandMeasure MeasureSlide "Execute 26"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link14]
Meter=String
MeasureName=mName14
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L14M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink14 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover14]
Meter=Image
X=#L14M#
Y=0r
W=([Link14:W]+35)
H=[Link14:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link14 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName14]"][!CommandMeasure MeasureSlide "Stop 28"][!CommandMeasure MeasureSlide "Execute 27"][!Update]
MouseLeaveAction=[!SetOption Link14 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 27"][!CommandMeasure MeasureSlide "Execute 28"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link15]
Meter=String
MeasureName=mName15
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L15M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink15 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover15]
Meter=Image
X=#L15M#
Y=0r
W=([Link15:W]+35)
H=[Link15:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link15 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName15]"][!CommandMeasure MeasureSlide "Stop 30"][!CommandMeasure MeasureSlide "Execute 29"][!Update]
MouseLeaveAction=[!SetOption Link15 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 29"][!CommandMeasure MeasureSlide "Execute 30"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link16]
Meter=String
MeasureName=mName16
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L16M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink16 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover16]
Meter=Image
X=#L16M#
Y=0r
W=([Link16:W]+35)
H=[Link16:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link16 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName16]"][!CommandMeasure MeasureSlide "Stop 32"][!CommandMeasure MeasureSlide "Execute 31"][!Update]
MouseLeaveAction=[!SetOption Link16 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 31"][!CommandMeasure MeasureSlide "Execute 32"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link17]
Meter=String
MeasureName=mName17
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L17M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink17 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover17]
Meter=Image
X=#L17M#
Y=0r
W=([Link17:W]+35)
H=[Link17:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link17 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName17]"][!CommandMeasure MeasureSlide "Stop 34"][!CommandMeasure MeasureSlide "Execute 33"][!Update]
MouseLeaveAction=[!SetOption Link17 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 33"][!CommandMeasure MeasureSlide "Execute 34"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link18]
Meter=String
MeasureName=mName18
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L18M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink18 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover18]
Meter=Image
X=#L18M#
Y=0r
W=([Link18:W]+35)
H=[Link18:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link18 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName18]"][!CommandMeasure MeasureSlide "Stop 36"][!CommandMeasure MeasureSlide "Execute 35"][!Update]
MouseLeaveAction=[!SetOption Link18 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 35"][!CommandMeasure MeasureSlide "Execute 36"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link19]
Meter=String
MeasureName=mName19
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L19M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink19 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover19]
Meter=Image
X=#L19M#
Y=0r
W=([Link19:W]+35)
H=[Link19:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link19 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName19]"][!CommandMeasure MeasureSlide "Stop 38"][!CommandMeasure MeasureSlide "Execute 37"][!Update]
MouseLeaveAction=[!SetOption Link19 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 37"][!CommandMeasure MeasureSlide "Execute 38"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link20]
Meter=String
MeasureName=mName20
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L20M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink20 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover20]
Meter=Image
X=#L20M#
Y=0r
W=([Link20:W]+35)
H=[Link20:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link20 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName20]"][!CommandMeasure MeasureSlide "Stop 40"][!CommandMeasure MeasureSlide "Execute 39"][!Update]
MouseLeaveAction=[!SetOption Link20 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 39"][!CommandMeasure MeasureSlide "Execute 40"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link21]
Meter=String
MeasureName=mName21
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L21M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink21 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover21]
Meter=Image
X=#L20M#
Y=0r
W=([Link21:W]+35)
H=[Link21:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link21 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName21]"][!CommandMeasure MeasureSlide "Stop 42"][!CommandMeasure MeasureSlide "Execute 41"][!Update]
MouseLeaveAction=[!SetOption Link21 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 41"][!CommandMeasure MeasureSlide "Execute 42"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link22]
Meter=String
MeasureName=mName22
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L22M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink22 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover22]
Meter=Image
X=#L22M#
Y=0r
W=([Link22:W]+35)
H=[Link22:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link22 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName22]"][!CommandMeasure MeasureSlide "Stop 44"][!CommandMeasure MeasureSlide "Execute 43"][!Update]
MouseLeaveAction=[!SetOption Link22 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 43"][!CommandMeasure MeasureSlide "Execute 44"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link23]
Meter=String
MeasureName=mName23
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L23M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink23 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover23]
Meter=Image
X=#L23M#
Y=0r
W=([Link23:W]+35)
H=[Link23:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link23 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName23]"][!CommandMeasure MeasureSlide "Stop 46"][!CommandMeasure MeasureSlide "Execute 45"][!Update]
MouseLeaveAction=[!SetOption Link23 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 45"][!CommandMeasure MeasureSlide "Execute 46"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link24]
Meter=String
MeasureName=mName24
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L24M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink24 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover24]
Meter=Image
X=#L24M#
Y=0r
W=([Link24:W]+35)
H=[Link24:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link24 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName24]"][!CommandMeasure MeasureSlide "Stop 48"][!CommandMeasure MeasureSlide "Execute 47"][!Update]
MouseLeaveAction=[!SetOption Link24 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 47"][!CommandMeasure MeasureSlide "Execute 48"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link25]
Meter=String
MeasureName=mName25
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L25M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink25 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover25]
Meter=Image
X=#L25M#
Y=0r
W=([Link25:W]+35)
H=[Link25:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link25 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName25]"][!CommandMeasure MeasureSlide "Stop 50"][!CommandMeasure MeasureSlide "Execute 49"][!Update]
MouseLeaveAction=[!SetOption Link25 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 49"][!CommandMeasure MeasureSlide "Execute 50"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link26]
Meter=String
MeasureName=mName26
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L26M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink26 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover26]
Meter=Image
X=#L26M#
Y=0r
W=([Link26:W]+35)
H=[Link26:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link26 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName26]"][!CommandMeasure MeasureSlide "Stop 52"][!CommandMeasure MeasureSlide "Execute 51"][!Update]
MouseLeaveAction=[!SetOption Link26 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 51"][!CommandMeasure MeasureSlide "Execute 52"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link27]
Meter=String
MeasureName=mName27
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L27M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink27 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover27]
Meter=Image
X=#L27M#
Y=0r
W=([Link27:W]+35)
H=[Link27:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link27 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName27]"][!CommandMeasure MeasureSlide "Stop 54"][!CommandMeasure MeasureSlide "Execute 53"][!Update]
MouseLeaveAction=[!SetOption Link27 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 53"][!CommandMeasure MeasureSlide "Execute 54"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link28]
Meter=String
MeasureName=mName28
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L28M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink28 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover28]
Meter=Image
X=#L28M#
Y=0r
W=([Link28:W]+35)
H=[Link28:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link28 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName28]"][!CommandMeasure MeasureSlide "Stop 56"][!CommandMeasure MeasureSlide "Execute 55"][!Update]
MouseLeaveAction=[!SetOption Link28 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 55"][!CommandMeasure MeasureSlide "Execute 56"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link29]
Meter=String
MeasureName=mName29
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L29M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink29 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover29]
Meter=Image
X=#L29M#
Y=0r
W=([Link29:W]+35)
H=[Link29:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link29 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName29]"][!CommandMeasure MeasureSlide "Stop 58"][!CommandMeasure MeasureSlide "Execute 57"][!Update]
MouseLeaveAction=[!SetOption Link29 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 57"][!CommandMeasure MeasureSlide "Execute 58"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link30]
Meter=String
MeasureName=mName30
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L30M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink30 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover30]
Meter=Image
X=#L30M#
Y=0r
W=([Link30:W]+35)
H=[Link30:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link30 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName30]"][!CommandMeasure MeasureSlide "Stop 60"][!CommandMeasure MeasureSlide "Execute 59"][!Update]
MouseLeaveAction=[!SetOption Link30 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 59"][!CommandMeasure MeasureSlide "Execute 60"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link31]
Meter=String
MeasureName=mName31
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L31M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink31 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover31]
Meter=Image
X=#L31M#
Y=0r
W=([Link31:W]+35)
H=[Link31:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link31 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName31]"][!CommandMeasure MeasureSlide "Stop 62"][!CommandMeasure MeasureSlide "Execute 61"][!Update]
MouseLeaveAction=[!SetOption Link31 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 61"][!CommandMeasure MeasureSlide "Execute 62"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link32]
Meter=String
MeasureName=mName32
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L32M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink32 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover32]
Meter=Image
X=#L32M#
Y=0r
W=([Link32:W]+35)
H=[Link32:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link32 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName32]"][!CommandMeasure MeasureSlide "Stop 64"][!CommandMeasure MeasureSlide "Execute 63"][!Update]
MouseLeaveAction=[!SetOption Link32 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 63"][!CommandMeasure MeasureSlide "Execute 64"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link33]
Meter=String
MeasureName=mName33
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L33M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink33 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover33]
Meter=Image
X=#L33M#
Y=0r
W=([Link33:W]+35)
H=[Link33:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link32 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName33]"][!CommandMeasure MeasureSlide "Stop 66"][!CommandMeasure MeasureSlide "Execute 65"][!Update]
MouseLeaveAction=[!SetOption Link32 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 65"][!CommandMeasure MeasureSlide "Execute 66"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link34]
Meter=String
MeasureName=mName34
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L34M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink34 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover34]
Meter=Image
X=#L34M#
Y=0r
W=([Link34:W]+35)
H=[Link34:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link34 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName34]"][!CommandMeasure MeasureSlide "Stop 68"][!CommandMeasure MeasureSlide "Execute 67"][!Update]
MouseLeaveAction=[!SetOption Link34 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 67"][!CommandMeasure MeasureSlide "Execute 68"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link35]
Meter=String
MeasureName=mName35
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L35M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink35 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover35]
Meter=Image
X=#L35M#
Y=0r
W=([Link35:W]+35)
H=[Link35:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link35 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName35]"][!CommandMeasure MeasureSlide "Stop 70"][!CommandMeasure MeasureSlide "Execute 69"][!Update]
MouseLeaveAction=[!SetOption Link35 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 69"][!CommandMeasure MeasureSlide "Execute 70"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link36]
Meter=String
MeasureName=mName36
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L36M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink36 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover36]
Meter=Image
X=#L36M#
Y=0r
W=([Link36:W]+35)
H=[Link36:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link36 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName36]"][!CommandMeasure MeasureSlide "Stop 72"][!CommandMeasure MeasureSlide "Execute 71"][!Update]
MouseLeaveAction=[!SetOption Link36 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 71"][!CommandMeasure MeasureSlide "Execute 72"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link37]
Meter=String
MeasureName=mName37
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L37M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink37 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover37]
Meter=Image
X=#L37M#
Y=0r
W=([Link37:W]+35)
H=[Link37:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link37 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName37]"][!CommandMeasure MeasureSlide "Stop 74"][!CommandMeasure MeasureSlide "Execute 73"][!Update]
MouseLeaveAction=[!SetOption Link37 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 73"][!CommandMeasure MeasureSlide "Execute 74"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link38]
Meter=String
MeasureName=mName38
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L38M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink38 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover38]
Meter=Image
X=#L38M#
Y=0r
W=([Link38:W]+35)
H=[Link38:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link38 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName38]"][!CommandMeasure MeasureSlide "Stop 76"][!CommandMeasure MeasureSlide "Execute 75"][!Update]
MouseLeaveAction=[!SetOption Link38 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 75"][!CommandMeasure MeasureSlide "Execute 76"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link39]
Meter=String
MeasureName=mName39
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L39M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink39 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover39]
Meter=Image
X=#L39M#
Y=0r
W=([Link39:W]+35)
H=[Link39:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link39 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName39]"][!CommandMeasure MeasureSlide "Stop 78"][!CommandMeasure MeasureSlide "Execute 77"][!Update]
MouseLeaveAction=[!SetOption Link39 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 77"][!CommandMeasure MeasureSlide "Execute 78"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[Link40]
Meter=String
MeasureName=mName40
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L40M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
LeftMouseUpAction=[!CommandMeasure mLink40 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover40]
Meter=Image
X=#L40M#
Y=0r
W=([Link40:W]+35)
H=[Link40:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link40 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName40]"][!CommandMeasure MeasureSlide "Stop 80"][!CommandMeasure MeasureSlide "Execute 79"][!Update]
MouseLeaveAction=[!SetOption Link40 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 79"][!CommandMeasure MeasureSlide "Execute 80"][!Update]
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup
This code still might be and should be improved. To be continued...
User avatar
hyprdmg
Posts: 44
Joined: May 23rd, 2010, 5:05 pm

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by hyprdmg »

balala wrote: September 6th, 2019, 3:35 pm With all this, my proposal is the following one:

Code: Select all

...
This code still might be and should be improved. To be continued...
So after testing the code you provided, it seems to perform the same as the update made from oZone's help:

Code: Select all

[Rainmeter]
Update=-1
SolidColor=0,0,0,1
DynamicWindowSize=1

[Metadata]
Name=Gameview
Author= Vicious Ned and Dylan Key

[Variables]
TextColour=192,192,192
ShortcutColour=0,0,0,1
MouseOverColour=50,205,50
TextSize=12
Font=Segoe UI
AntiAlias=1
ScreenWidth=#SCREENAREAWIDTH@2#
ScreenHeight=#SCREENAREAHEIGHT@2#
BarWidth=720
TopMargin=10
Spacing=15
LeftMargin=15
LinkArea=26
NumOfApps=(#ScreenHeight#/(#TextSize#+#Spacing#))
WW=15
L1M=15
L2M=15
L3M=15
L4M=15
L5M=15
L6M=15
L7M=15
L8M=15
L9M=15
L10M=15
L11M=15
L12M=15
L13M=15
L14M=15
L15M=15
L16M=15
L17M=15
L18M=15
L19M=15
L20M=15
L21M=15
L22M=15
L23M=15
L24M=15
L25M=15
L26M=15
L27M=15
L28M=15
L29M=15
L30M=15
L31M=15
L32M=15
L33M=15
L34M=15
L35M=15
L36M=15
L37M=15
L38M=15
L39M=15
L40M=15

[MeasureFolder]
Measure=Plugin
Plugin=FileView
Path="#@#\Shortcuts"
Count=#NumOfApps#
ShowDotDot=0
HideExtensions=1


;*****MEASURES*****


[mLink1]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=1
[mName1]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=1

[mLink2]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=2
[mName2]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=2

[mLink3]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=3
[mName3]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=3

[mLink4]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=4
[mName4]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=4

[mLink5]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=5
[mName5]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=5

[mLink6]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=6
[mName6]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=6

[mLink7]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=7
[mName7]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=7

[mLink8]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=8
[mName8]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=8

[mLink9]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=9
[mName9]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=9

[mLink10]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=10
[mName10]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=10

[mLink11]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=11
[mName11]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=11

[mLink12]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=12
[mName12]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=12

[mLink13]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=13
[mName13]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=13

[mLink14]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=14
[mName14]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=14

[mLink15]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=15
[mName15]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=15

[mLink16]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=16
[mName16]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=16

[mLink17]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=17
[mName17]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=17

[mLink18]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=18
[mName18]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=18

[mLink19]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=19
[mName19]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=19

[mLink20]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=20
[mName20]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=20

[mLink21]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=21
[mName21]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=21

[mLink22]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=22
[mName22]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=22

[mLink23]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=23
[mName23]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=23

[mLink24]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=24
[mName24]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=24

[mLink25]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=25
[mName25]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=25

[mLink26]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=26
[mName26]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=26

[mLink27]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=27
[mName27]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=27

[mLink28]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=28
[mName28]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=28

[mLink29]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=29
[mName29]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=29

[mLink30]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=30
[mName30]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=30

[mLink31]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=31
[mName31]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=31

[mLink32]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=32
[mName32]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=32

[mLink33]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=33
[mName33]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=33

[mLink34]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=34
[mName34]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=34

[mLink35]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=35
[mName35]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=35

[mLink36]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=36
[mName36]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=36

[mLink37]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=37
[mName37]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=37

[mLink38]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=38
[mName38]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=38

[mLink39]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=39
[mName39]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=39

[mLink40]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=40
[mName40]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=40


;*****METERS*****


[MouseOverBar]
Meter=Image
W=1
H=#ScreenHeight#
SolidColor=0,0,0,1
MouseOverAction=[!ShowMeterGroup GameGroup][!Update]
MouseScrollDownAction=[!CommandMeasure mLink][!IndexUp]
MouseScrollUpAction=[!CommandMeasure mLink][!IndexDown]

[View]
Meter=Image
Group=GameGroup
W=#ScreenWidth#
H=#ScreenHeight#
PreserveAspectRatio=2
Hidden=1
DynamicVariables=1
ImageName=""

[Background]
Meter=Image
MeasureName=MeasureScroll
Group=GameGroup
SolidColor=22,22,29
SolidColor2=22,22,29,0
W=#BarWidth#
H=#ScreenHeight#
AntiAlias=1
Hidden=1
MouseLeaveAction=[!HideMeterGroup GameGroup][!Update]
MouseScrollDownAction=[!CommandMeasure "MeasureFolder" IndexDown][!Update]
MouseScrollUpAction=[!CommandMeasure "MeasureFolder" IndexUp][!Update]


;*****Animation Stuff*****


[MeasureSlide]
Measure=Plugin
Plugin=ActionTimer

ActionList1=Repeat Right1,#WW#,5
Right1=[!SetVariable L1M "(Clamp(#L1M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link1][!Redraw]
ActionList2=Repeat Left1,#WW#,5
Left1=[!SetVariable L1M "(Clamp(#L1M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link1][!Redraw]

ActionList3=Repeat Right2,#WW#,5
Right2=[!SetVariable L2M "(Clamp(#L2M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link2][!Redraw]
ActionList4=Repeat Left2,#WW#,5
Left2=[!SetVariable L2M "(Clamp(#L2M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link2][!Redraw]

ActionList5=Repeat Right3,#WW#,5
Right3=[!SetVariable L3M "(Clamp(#L3M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link3][!Redraw]
ActionList6=Repeat Left3,#WW#,5
Left3=[!SetVariable L3M "(Clamp(#L3M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link3][!Redraw]

ActionList7=Repeat Right4,#WW#,5
Right4=[!SetVariable L4M "(Clamp(#L4M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link4][!Redraw]
ActionList8=Repeat Left4,#WW#,5
Left4=[!SetVariable L4M "(Clamp(#L4M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link4][!Redraw]

ActionList9=Repeat Right5,#WW#,5
Right5=[!SetVariable L5M "(Clamp(#L5M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link5][!Redraw]
ActionList10=Repeat Left5,#WW#,5
Left5=[!SetVariable L5M "(Clamp(#L5M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link5][!Redraw]

ActionList11=Repeat Right6,#WW#,5
Right6=[!SetVariable L6M "(Clamp(#L6M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link6][!Redraw]
ActionList12=Repeat Left6,#WW#,5
Left6=[!SetVariable L6M "(Clamp(#L6M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link6][!Redraw]

ActionList13=Repeat Right7,#WW#,5
Right7=[!SetVariable L7M "(Clamp(#L7M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link7][!Redraw]
ActionList14=Repeat Left7,#WW#,5
Left7=[!SetVariable L7M "(Clamp(#L7M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link7][!Redraw]

ActionList15=Repeat Right8,#WW#,5
Right8=[!SetVariable L8M "(Clamp(#L8M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link8][!Redraw]
ActionList16=Repeat Left8,#WW#,5
Left8=[!SetVariable L8M "(Clamp(#L8M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link8][!Redraw]

ActionList17=Repeat Right9,#WW#,5
Right9=[!SetVariable L9M "(Clamp(#L9M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link9][!Redraw]
ActionList18=Repeat Left9,#WW#,5
Left9=[!SetVariable L9M "(Clamp(#L9M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link9][!Redraw]

ActionList19=Repeat Right10,#WW#,5
Right10=[!SetVariable L10M "(Clamp(#L10M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link10][!Redraw]
ActionList20=Repeat Left10,#WW#,5
Left10=[!SetVariable L10M "(Clamp(#L10M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link10][!Redraw]

ActionList21=Repeat Right11,#WW#,5
Right11=[!SetVariable L11M "(Clamp(#L11M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link11][!Redraw]
ActionList22=Repeat Left11,#WW#,5
Left11=[!SetVariable L11M "(Clamp(#L11M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link11][!Redraw]

ActionList23=Repeat Right12,#WW#,5
Right12=[!SetVariable L12M "(Clamp(#L12M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link12][!Redraw]
ActionList24=Repeat Left12,#WW#,5
Left12=[!SetVariable L12M "(Clamp(#L12M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link12][!Redraw]

ActionList25=Repeat Right13,#WW#,5
Right13=[!SetVariable L13M "(Clamp(#L13M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link13][!Redraw]
ActionList26=Repeat Left13,#WW#,5
Left13=[!SetVariable L13M "(Clamp(#L13M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link13][!Redraw]

ActionList27=Repeat Right14,#WW#,5
Right14=[!SetVariable L14M "(Clamp(#L14M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link14][!Redraw]
ActionList28=Repeat Left14,#WW#,5
Left14=[!SetVariable L14M "(Clamp(#L14M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link14][!Redraw]

ActionList29=Repeat Right15,#WW#,5
Right15=[!SetVariable L15M "(Clamp(#L15M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link15][!Redraw]
ActionList30=Repeat Left15,#WW#,5
Left15=[!SetVariable L15M "(Clamp(#L15M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link15][!Redraw]

ActionList31=Repeat Right16,#WW#,5
Right16=[!SetVariable L16M "(Clamp(#L16M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link16][!Redraw]
ActionList32=Repeat Left16,#WW#,5
Left16=[!SetVariable L16M "(Clamp(#L16M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link16][!Redraw]

ActionList33=Repeat Right17,#WW#,5
Right17=[!SetVariable L17M "(Clamp(#L17M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link17][!Redraw]
ActionList34=Repeat Left17,#WW#,5
Left17=[!SetVariable L17M "(Clamp(#L17M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link17][!Redraw]

ActionList35=Repeat Right18,#WW#,5
Right18=[!SetVariable L18M "(Clamp(#L18M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link18][!Redraw]
ActionList36=Repeat Left18,#WW#,5
Left18=[!SetVariable L18M "(Clamp(#L18M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link18][!Redraw]

ActionList37=Repeat Right19,#WW#,5
Right19=[!SetVariable L19M "(Clamp(#L19M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link19][!Redraw]
ActionList38=Repeat Left19,#WW#,5
Left19=[!SetVariable L19M "(Clamp(#L19M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link19][!Redraw]

ActionList39=Repeat Right20,#WW#,5
Right20=[!SetVariable L20M "(Clamp(#L20M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link20][!Redraw]
ActionList40=Repeat Left20,#WW#,5
Left20=[!SetVariable L20M "(Clamp(#L20M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link20][!Redraw]

ActionList41=Repeat Right21,#WW#,5
Right21=[!SetVariable L21M "(Clamp(#L21M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link21][!Redraw]
ActionList42=Repeat Left21,#WW#,5
Left21=[!SetVariable L21M "(Clamp(#L21M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link21][!Redraw]

ActionList43=Repeat Right22,#WW#,5
Right22=[!SetVariable L22M "(Clamp(#L22M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link22][!Redraw]
ActionList44=Repeat Left22,#WW#,5
Left22=[!SetVariable L22M "(Clamp(#L22M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link22][!Redraw]

ActionList45=Repeat Right23,#WW#,5
Right23=[!SetVariable L23M "(Clamp(#L23M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link23][!Redraw]
ActionList46=Repeat Left23,#WW#,5
Left23=[!SetVariable L23M "(Clamp(#L23M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link23][!Redraw]

ActionList47=Repeat Right24,#WW#,5
Right24=[!SetVariable L24M "(Clamp(#L24M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link24][!Redraw]
ActionList48=Repeat Left24,#WW#,5
Left24=[!SetVariable L24M "(Clamp(#L24M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link24][!Redraw]

ActionList49=Repeat Right25,#WW#,5
Right25=[!SetVariable L25M "(Clamp(#L25M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link25][!Redraw]
ActionList50=Repeat Left25,#WW#,5
Left25=[!SetVariable L25M "(Clamp(#L25M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link25][!Redraw]

ActionList51=Repeat Right26,#WW#,5
Right26=[!SetVariable L26M "(Clamp(#L26M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link26][!Redraw]
ActionList52=Repeat Left26,#WW#,5
Left26=[!SetVariable L26M "(Clamp(#L26M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link26][!Redraw]

ActionList53=Repeat Right27,#WW#,5
Right27=[!SetVariable L27M "(Clamp(#L27M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link27][!Redraw]
ActionList54=Repeat Left27,#WW#,5
Left27=[!SetVariable L27M "(Clamp(#L27M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link27][!Redraw]

ActionList55=Repeat Right28,#WW#,5
Right28=[!SetVariable L28M "(Clamp(#L28M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link28][!Redraw]
ActionList56=Repeat Left28,#WW#,5
Left28=[!SetVariable L28M "(Clamp(#L28M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link28][!Redraw]

ActionList57=Repeat Right29,#WW#,5
Right29=[!SetVariable L29M "(Clamp(#L29M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link29][!Redraw]
ActionList58=Repeat Left29,#WW#,5
Left29=[!SetVariable L29M "(Clamp(#L29M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link29][!Redraw]

ActionList59=Repeat Right30,#WW#,5
Right30=[!SetVariable L30M "(Clamp(#L30M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link30][!Redraw]
ActionList60=Repeat Left30,#WW#,5
Left30=[!SetVariable L30M "(Clamp(#L30M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link30][!Redraw]

ActionList61=Repeat Right31,#WW#,5
Right31=[!SetVariable L31M "(Clamp(#L31M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link31][!Redraw]
ActionList62=Repeat Left31,#WW#,5
Left31=[!SetVariable L31M "(Clamp(#L31M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link31][!Redraw]

ActionList63=Repeat Right32,#WW#,5
Right32=[!SetVariable L32M "(Clamp(#L32M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link32][!Redraw]
ActionList64=Repeat Left32,#WW#,5
Left32=[!SetVariable L32M "(Clamp(#L32M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link32][!Redraw]

ActionList65=Repeat Right33,#WW#,5
Right33=[!SetVariable L33M "(Clamp(#L33M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link33][!Redraw]
ActionList66=Repeat Left33,#WW#,5
Left33=[!SetVariable L33M "(Clamp(#L33M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link33][!Redraw]

ActionList67=Repeat Right34,#WW#,5
Right34=[!SetVariable L34M "(Clamp(#L34M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link34][!Redraw]
ActionList68=Repeat Left34,#WW#,5
Left34=[!SetVariable L34M "(Clamp(#L34M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link34][!Redraw]

ActionList69=Repeat Right35,#WW#,5
Right35=[!SetVariable L35M "(Clamp(#L35M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link35][!Redraw]
ActionList70=Repeat Left35,#WW#,5
Left35=[!SetVariable L35M "(Clamp(#L35M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link35][!Redraw]

ActionList70=Repeat Right36,#WW#,5
Right36=[!SetVariable L36M "(Clamp(#L36M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link36][!Redraw]
ActionList71=Repeat Left36,#WW#,5
Left36=[!SetVariable L36M "(Clamp(#L36M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link36][!Redraw]

ActionList72=Repeat Right37,#WW#,5
Right37=[!SetVariable L37M "(Clamp(#L37M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link37][!Redraw]
ActionList73=Repeat Left37,#WW#,5
Left37=[!SetVariable L37M "(Clamp(#L37M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link37][!Redraw]

ActionList74=Repeat Right38,#WW#,5
Right38=[!SetVariable L38M "(Clamp(#L38M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link38][!Redraw]
ActionList75=Repeat Left38,#WW#,5
Left38=[!SetVariable L38M "(Clamp(#L38M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link38][!Redraw]

ActionList76=Repeat Right39,#WW#,5
Right39=[!SetVariable L39M "(Clamp(#L39M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link39][!Redraw]
ActionList77=Repeat Left39,#WW#,5
Left39=[!SetVariable L39M "(Clamp(#L39M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link39][!Redraw]

ActionList78=Repeat Right40,#WW#,5
Right40=[!SetVariable L40M "(Clamp(#L40M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link40][!Redraw]
ActionList79=Repeat Left40,#WW#,5
Left40=[!SetVariable L40M "(Clamp(#L40M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link40][!Redraw]

DynamicVariables=1


;*****LINKS*****

[Link1]
Meter=String
MeasureName=mName1
H=#LinkArea#
Group=GameGroup
X=#L1M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover1]
LeftMouseUpAction=[!CommandMeasure mLink1 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover1]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link1:W]+35)
H=[Link1:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link1 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName1]"][!CommandMeasure MeasureSlide "Stop 2"][!CommandMeasure MeasureSlide "Execute 1"][!Update]
MouseLeaveAction=[!SetOption Link1 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 1"][!CommandMeasure MeasureSlide "Execute 2"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link2]
Meter=String
MeasureName=mName2
Group=GameGroup
H=#LinkArea#
X=#L2M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover2]
LeftMouseUpAction=[!CommandMeasure mLink2 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover2]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link2:W]+35)
H=[Link2:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link2 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName2]"][!CommandMeasure MeasureSlide "Stop 4"][!CommandMeasure MeasureSlide "Execute 3"][!Update]
MouseLeaveAction=[!SetOption Link2 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 3"][!CommandMeasure MeasureSlide "Execute 4"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link3]
Meter=String
MeasureName=mName3
Group=GameGroup
H=#LinkArea#
X=#L3M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover3]
LeftMouseUpAction=[!CommandMeasure mLink3 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover3]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link3:W]+35)
H=[Link3:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link3 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName3]"][!CommandMeasure MeasureSlide "Stop 6"][!CommandMeasure MeasureSlide "Execute 5"][!Update]
MouseLeaveAction=[!SetOption Link3 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 5"][!CommandMeasure MeasureSlide "Execute 6"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link4]
Meter=String
MeasureName=mName4
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L4M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover4]
LeftMouseUpAction=[!CommandMeasure mLink4 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover4]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link4:W]+35)
H=[Link4:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link4 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName4]"][!CommandMeasure MeasureSlide "Stop 8"][!CommandMeasure MeasureSlide "Execute 7"][!Update]
MouseLeaveAction=[!SetOption Link4 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 7"][!CommandMeasure MeasureSlide "Execute 8"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link5]
Meter=String
MeasureName=mName5
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L5M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover5]
LeftMouseUpAction=[!CommandMeasure mLink5 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover5]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link5:W]+35)
H=[Link5:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link5 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName5]"][!CommandMeasure MeasureSlide "Stop 10"][!CommandMeasure MeasureSlide "Execute 9"][!Update]
MouseLeaveAction=[!SetOption Link5 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 9"][!CommandMeasure MeasureSlide "Execute 10"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link6]
Meter=String
MeasureName=mName6
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L6M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover6]
LeftMouseUpAction=[!CommandMeasure mLink6 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover6]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link6:W]+35)
H=[Link6:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link6 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName6]"][!CommandMeasure MeasureSlide "Stop 12"][!CommandMeasure MeasureSlide "Execute 11"][!Update]
MouseLeaveAction=[!SetOption Link6 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 11"][!CommandMeasure MeasureSlide "Execute 12"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link7]
Meter=String
MeasureName=mName7
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L7M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover7]
LeftMouseUpAction=[!CommandMeasure mLink7 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover7]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link7:W]+35)
H=[Link7:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link7 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName7]"][!CommandMeasure MeasureSlide "Stop 14"][!CommandMeasure MeasureSlide "Execute 13"][!Update]
MouseLeaveAction=[!SetOption Link7 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 13"][!CommandMeasure MeasureSlide "Execute 14"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link8]
Meter=String
MeasureName=mName8
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L8M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover8]
LeftMouseUpAction=[!CommandMeasure mLink8 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover8]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link8:W]+35)
H=[Link8:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link8 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName8]"][!CommandMeasure MeasureSlide "Stop 16"][!CommandMeasure MeasureSlide "Execute 15"][!Update]
MouseLeaveAction=[!SetOption Link8 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 15"][!CommandMeasure MeasureSlide "Execute 16"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link9]
Meter=String
MeasureName=mName9
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L9M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover9]
LeftMouseUpAction=[!CommandMeasure mLink9 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover9]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link9:W]+35)
H=[Link9:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link9 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName9]"][!CommandMeasure MeasureSlide "Stop 18"][!CommandMeasure MeasureSlide "Execute 17"][!Update]
MouseLeaveAction=[!SetOption Link9 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 17"][!CommandMeasure MeasureSlide "Execute 18"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link10]
Meter=String
MeasureName=mName10
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L10M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover10]
LeftMouseUpAction=[!CommandMeasure mLink10 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover10]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link10:W]+35)
H=[Link10:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link10 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName10]"][!CommandMeasure MeasureSlide "Stop 20"][!CommandMeasure MeasureSlide "Execute 19"][!Update]
MouseLeaveAction=[!SetOption Link10 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 19"][!CommandMeasure MeasureSlide "Execute 20"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link11]
Meter=String
MeasureName=mName11
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L11M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover11]
LeftMouseUpAction=[!CommandMeasure mLink11 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover11]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link11:W]+35)
H=[Link11:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link11 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName11]"][!CommandMeasure MeasureSlide "Stop 22"][!CommandMeasure MeasureSlide "Execute 21"][!Update]
MouseLeaveAction=[!SetOption Link11 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 21"][!CommandMeasure MeasureSlide "Execute 22"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link12]
Meter=String
MeasureName=mName12
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L12M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover12]
LeftMouseUpAction=[!CommandMeasure mLink12 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover12]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link12:W]+35)
H=[Link12:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link12 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName12]"][!CommandMeasure MeasureSlide "Stop 24"][!CommandMeasure MeasureSlide "Execute 23"][!Update]
MouseLeaveAction=[!SetOption Link12 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 23"][!CommandMeasure MeasureSlide "Execute 24"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link13]
Meter=String
MeasureName=mName13
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L13M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover13]
LeftMouseUpAction=[!CommandMeasure mLink13 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover13]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link13:W]+35)
H=[Link13:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link13 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName13]"][!CommandMeasure MeasureSlide "Stop 26"][!CommandMeasure MeasureSlide "Execute 25"][!Update]
MouseLeaveAction=[!SetOption Link13 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 25"][!CommandMeasure MeasureSlide "Execute 26"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link14]
Meter=String
MeasureName=mName14
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L14M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover14]
LeftMouseUpAction=[!CommandMeasure mLink14 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover14]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link14:W]+35)
H=[Link14:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link14 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName14]"][!CommandMeasure MeasureSlide "Stop 28"][!CommandMeasure MeasureSlide "Execute 27"][!Update]
MouseLeaveAction=[!SetOption Link14 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 27"][!CommandMeasure MeasureSlide "Execute 28"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link15]
Meter=String
MeasureName=mName15
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L15M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover15]
LeftMouseUpAction=[!CommandMeasure mLink15 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover15]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link15:W]+35)
H=[Link15:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link15 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName15]"][!CommandMeasure MeasureSlide "Stop 30"][!CommandMeasure MeasureSlide "Execute 29"][!Update]
MouseLeaveAction=[!SetOption Link15 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 29"][!CommandMeasure MeasureSlide "Execute 30"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link16]
Meter=String
MeasureName=mName16
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L16M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover16]
LeftMouseUpAction=[!CommandMeasure mLink16 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover16]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link16:W]+35)
H=[Link16:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link16 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName16]"][!CommandMeasure MeasureSlide "Stop 32"][!CommandMeasure MeasureSlide "Execute 31"][!Update]
MouseLeaveAction=[!SetOption Link16 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 31"][!CommandMeasure MeasureSlide "Execute 32"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link17]
Meter=String
MeasureName=mName17
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L17M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover17]
LeftMouseUpAction=[!CommandMeasure mLink17 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover17]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link17:W]+35)
H=[Link17:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link17 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName17]"][!CommandMeasure MeasureSlide "Stop 34"][!CommandMeasure MeasureSlide "Execute 33"][!Update]
MouseLeaveAction=[!SetOption Link17 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 33"][!CommandMeasure MeasureSlide "Execute 34"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link18]
Meter=String
MeasureName=mName18
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L18M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover18]
LeftMouseUpAction=[!CommandMeasure mLink18 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover18]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link18:W]+35)
H=[Link18:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link18 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName18]"][!CommandMeasure MeasureSlide "Stop 36"][!CommandMeasure MeasureSlide "Execute 35"][!Update]
MouseLeaveAction=[!SetOption Link18 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 35"][!CommandMeasure MeasureSlide "Execute 36"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link19]
Meter=String
MeasureName=mName19
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L19M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover19]
LeftMouseUpAction=[!CommandMeasure mLink19 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover19]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link19:W]+35)
H=[Link19:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link19 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName19]"][!CommandMeasure MeasureSlide "Stop 38"][!CommandMeasure MeasureSlide "Execute 37"][!Update]
MouseLeaveAction=[!SetOption Link19 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 37"][!CommandMeasure MeasureSlide "Execute 38"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link20]
Meter=String
MeasureName=mName20
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L20M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover20]
LeftMouseUpAction=[!CommandMeasure mLink20 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover20]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link20:W]+35)
H=[Link20:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link20 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName20]"][!CommandMeasure MeasureSlide "Stop 40"][!CommandMeasure MeasureSlide "Execute 39"][!Update]
MouseLeaveAction=[!SetOption Link20 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 39"][!CommandMeasure MeasureSlide "Execute 40"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link21]
Meter=String
MeasureName=mName21
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L21M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover21]
LeftMouseUpAction=[!CommandMeasure mLink21 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover21]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link21:W]+35)
H=[Link21:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link21 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName21]"][!CommandMeasure MeasureSlide "Stop 42"][!CommandMeasure MeasureSlide "Execute 41"][!Update]
MouseLeaveAction=[!SetOption Link21 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 41"][!CommandMeasure MeasureSlide "Execute 42"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link22]
Meter=String
MeasureName=mName22
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L22M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover22]
LeftMouseUpAction=[!CommandMeasure mLink22 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover22]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link22:W]+35)
H=[Link22:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link22 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName22]"][!CommandMeasure MeasureSlide "Stop 44"][!CommandMeasure MeasureSlide "Execute 43"][!Update]
MouseLeaveAction=[!SetOption Link22 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 43"][!CommandMeasure MeasureSlide "Execute 44"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link23]
Meter=String
MeasureName=mName23
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L23M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover23]
LeftMouseUpAction=[!CommandMeasure mLink23 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover23]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link23:W]+35)
H=[Link23:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link23 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName23]"][!CommandMeasure MeasureSlide "Stop 46"][!CommandMeasure MeasureSlide "Execute 45"][!Update]
MouseLeaveAction=[!SetOption Link23 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 45"][!CommandMeasure MeasureSlide "Execute 46"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link24]
Meter=String
MeasureName=mName24
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L24M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover24]
LeftMouseUpAction=[!CommandMeasure mLink24 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover24]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link24:W]+35)
H=[Link24:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link24 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName24]"][!CommandMeasure MeasureSlide "Stop 48"][!CommandMeasure MeasureSlide "Execute 47"][!Update]
MouseLeaveAction=[!SetOption Link24 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 47"][!CommandMeasure MeasureSlide "Execute 48"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link25]
Meter=String
MeasureName=mName25
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L25M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover25]
LeftMouseUpAction=[!CommandMeasure mLink25 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover25]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link25:W]+35)
H=[Link25:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link25 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName25]"][!CommandMeasure MeasureSlide "Stop 50"][!CommandMeasure MeasureSlide "Execute 49"][!Update]
MouseLeaveAction=[!SetOption Link25 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 49"][!CommandMeasure MeasureSlide "Execute 50"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link26]
Meter=String
MeasureName=mName26
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L26M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover26]
LeftMouseUpAction=[!CommandMeasure mLink26 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover26]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link26:W]+35)
H=[Link26:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link26 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName26]"][!CommandMeasure MeasureSlide "Stop 52"][!CommandMeasure MeasureSlide "Execute 51"][!Update]
MouseLeaveAction=[!SetOption Link26 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 51"][!CommandMeasure MeasureSlide "Execute 52"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link27]
Meter=String
MeasureName=mName27
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L27M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover27]
LeftMouseUpAction=[!CommandMeasure mLink27 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover27]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link27:W]+35)
H=[Link27:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link27 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName27]"][!CommandMeasure MeasureSlide "Stop 54"][!CommandMeasure MeasureSlide "Execute 53"][!Update]
MouseLeaveAction=[!SetOption Link27 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 53"][!CommandMeasure MeasureSlide "Execute 54"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link28]
Meter=String
MeasureName=mName28
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L28M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover28]
LeftMouseUpAction=[!CommandMeasure mLink28 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover28]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link28:W]+35)
H=[Link28:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link28 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName28]"][!CommandMeasure MeasureSlide "Stop 56"][!CommandMeasure MeasureSlide "Execute 55"][!Update]
MouseLeaveAction=[!SetOption Link28 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 55"][!CommandMeasure MeasureSlide "Execute 56"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link29]
Meter=String
MeasureName=mName29
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L29M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover29]
LeftMouseUpAction=[!CommandMeasure mLink29 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover29]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link29:W]+35)
H=[Link29:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link29 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName29]"][!CommandMeasure MeasureSlide "Stop 58"][!CommandMeasure MeasureSlide "Execute 57"][!Update]
MouseLeaveAction=[!SetOption Link29 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 57"][!CommandMeasure MeasureSlide "Execute 58"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link30]
Meter=String
MeasureName=mName30
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L30M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover30]
LeftMouseUpAction=[!CommandMeasure mLink30 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover30]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link30:W]+35)
H=[Link30:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link30 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName30]"][!CommandMeasure MeasureSlide "Stop 60"][!CommandMeasure MeasureSlide "Execute 59"][!Update]
MouseLeaveAction=[!SetOption Link30 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 59"][!CommandMeasure MeasureSlide "Execute 60"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link31]
Meter=String
MeasureName=mName31
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L31M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover31]
LeftMouseUpAction=[!CommandMeasure mLink31 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover31]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link31:W]+35)
H=[Link31:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link31 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName31]"][!CommandMeasure MeasureSlide "Stop 62"][!CommandMeasure MeasureSlide "Execute 61"][!Update]
MouseLeaveAction=[!SetOption Link31 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 61"][!CommandMeasure MeasureSlide "Execute 62"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link32]
Meter=String
MeasureName=mName32
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L32M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover32]
LeftMouseUpAction=[!CommandMeasure mLink32 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover32]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link32:W]+35)
H=[Link32:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link32 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName32]"][!CommandMeasure MeasureSlide "Stop 64"][!CommandMeasure MeasureSlide "Execute 63"][!Update]
MouseLeaveAction=[!SetOption Link32 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 63"][!CommandMeasure MeasureSlide "Execute 64"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link33]
Meter=String
MeasureName=mName33
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L33M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover33]
LeftMouseUpAction=[!CommandMeasure mLink33 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover33]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link33:W]+35)
H=[Link33:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link32 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName33]"][!CommandMeasure MeasureSlide "Stop 66"][!CommandMeasure MeasureSlide "Execute 65"][!Update]
MouseLeaveAction=[!SetOption Link32 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 65"][!CommandMeasure MeasureSlide "Execute 66"][!Update]
DynamicVariables=1
UpdateDivider=-1
[Link34]
Meter=String
MeasureName=mName34
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L34M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover34]
LeftMouseUpAction=[!CommandMeasure mLink34 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover34]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link34:W]+35)
H=[Link34:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link34 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName34]"][!CommandMeasure MeasureSlide "Stop 68"][!CommandMeasure MeasureSlide "Execute 67"][!Update]
MouseLeaveAction=[!SetOption Link34 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 67"][!CommandMeasure MeasureSlide "Execute 68"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link35]
Meter=String
MeasureName=mName35
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L35M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover35]
LeftMouseUpAction=[!CommandMeasure mLink35 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover35]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link35:W]+35)
H=[Link35:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link35 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName35]"][!CommandMeasure MeasureSlide "Stop 70"][!CommandMeasure MeasureSlide "Execute 69"][!Update]
MouseLeaveAction=[!SetOption Link35 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 69"][!CommandMeasure MeasureSlide "Execute 70"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link36]
Meter=String
MeasureName=mName36
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L36M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover36]
LeftMouseUpAction=[!CommandMeasure mLink36 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover36]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link36:W]+35)
H=[Link36:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link36 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName36]"][!CommandMeasure MeasureSlide "Stop 72"][!CommandMeasure MeasureSlide "Execute 71"][!Update]
MouseLeaveAction=[!SetOption Link36 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 71"][!CommandMeasure MeasureSlide "Execute 72"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link37]
Meter=String
MeasureName=mName37
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L37M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover37]
LeftMouseUpAction=[!CommandMeasure mLink37 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover37]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link37:W]+35)
H=[Link37:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link37 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName37]"][!CommandMeasure MeasureSlide "Stop 74"][!CommandMeasure MeasureSlide "Execute 73"][!Update]
MouseLeaveAction=[!SetOption Link37 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 73"][!CommandMeasure MeasureSlide "Execute 74"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link38]
Meter=String
MeasureName=mName38
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L38M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover38]
LeftMouseUpAction=[!CommandMeasure mLink38 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover38]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link38:W]+35)
H=[Link38:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link38 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName38]"][!CommandMeasure MeasureSlide "Stop 76"][!CommandMeasure MeasureSlide "Execute 75"][!Update]
MouseLeaveAction=[!SetOption Link38 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 75"][!CommandMeasure MeasureSlide "Execute 76"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link39]
Meter=String
MeasureName=mName39
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L39M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover39]
LeftMouseUpAction=[!CommandMeasure mLink39 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover39]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link39:W]+35)
H=[Link39:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link39 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName39]"][!CommandMeasure MeasureSlide "Stop 78"][!CommandMeasure MeasureSlide "Execute 77"][!Update]
MouseLeaveAction=[!SetOption Link39 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 77"][!CommandMeasure MeasureSlide "Execute 78"][!Update]
DynamicVariables=1
UpdateDivider=-1

[Link40]
Meter=String
MeasureName=mName40
Group=GameGroup
SolidColor=0,0,0,1
H=#LinkArea#
X=#L40M#
Y=(#Spacing#+#TextSize#)r
Text=%1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1
MouseOverAction=[!UpdateMeter MeterMouseHover40]
LeftMouseUpAction=[!CommandMeasure mLink40 FollowPath][!HideMeterGroup GameGroup][!Update]
[MeterMouseHover40]
Meter=Image
X=#LeftMargin#
Group=GameGroup
Y=0r
W=([Link40:W]+35)
H=[Link40:H]
SolidColor=0,0,0,1
MouseOverAction=[!SetOption Link40 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName40]"][!CommandMeasure MeasureSlide "Stop 80"][!CommandMeasure MeasureSlide "Execute 79"][!Update]
MouseLeaveAction=[!SetOption Link40 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 79"][!CommandMeasure MeasureSlide "Execute 80"][!Update]
DynamicVariables=1
UpdateDivider=-1
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by balala »

hyprdmg wrote: September 6th, 2019, 4:32 pm So after testing the code you provided, it seems to perform the same as the update made from oZone's help:
Definitely. I didn't want to replace his code, these are just different variations of the same solution. As usually, the same thing can be done in different ways.
However as I said, there still are some issues / things to be improved. Working on them...
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by balala »

So here is a rewritten code, starting from my last posted code. Improvements done:
  • Instead of adding each option to all similar meters, I added two style sections ([StringStyle] and [HoverStyle]) and used these ones on all [LinkXX] and [MeterMouseHoverXX] meters, along with removing from the meters all options used into the style sections. This reduces dramatically the size of the .ini file.
  • The SolidColor=0,0,0,1 option alone is useless into the [Rainmeter] section. To apply this background color to the whole skin, you also need a BackgroundMode=2 option into the same [Rainmeter] section. Added as well.
  • The MouseScrollUpAction and MouseScrollDownAction options of the [MouseOverBar] meter are both incorrect and useless. A [mLink] measure (used into the !CommandMeasure bangs of these two options) doesn't even exist. But even if would exist, the !CommandMeasure bangs require two parameters. From these two, only the first is added. Additionally a [!IndexUp] and [!IndexDown] bangs are used, but such bangs don't exist. I suppose those bangs should be the last parameter of the !CommandMeasure bangs, but because they are applied to not existent measures, I removed (commented out) the two options.
  • I replaced the [!Update] bangs used into the MouseOverAction and MouseLeaveAction options of the [MeterMouseHoverXX] meters with [!UpdateMeter "LinkXX"][!UpdateMeter "View"][!Redraw], because there is no need to always update the whole skin whenever are you hovering the mouse over a meter or leaving it.
  • As I never like to use the [!Update] bang (however sometimes is not possible to avoid it), I also replaced them with [!UpdateMeasureGroup "FileView"][!UpdateMeterGroup "GameGroup"][!Redraw] into the MouseScrollDownAction and MouseScrollUpAction options of the [Background] meter, along with adding a Group=FileView option to all FileView plugin measure, excepting the parent one (from [mLink1] and [mName1] up to [mLink40] and [mName40]).
  • I replaced the ShowDotDot=0 option of the [MeasureFolder] measure with ShowDotDot=1. I did this because with the old option there is not possible to exit from an once opened folder. Using ShowDotDot=1, there always is a first element which clicked get you out from the current folder (if the old behavior is desired, change the option back to 0).
That's all for now. Maybe some additional improvements are still possible and a little bit later I'll take one more look, but first please try out the below code:

Code: Select all

[Rainmeter]
Update=-1
BackgroundMode=2
SolidColor=0,0,0,1
DynamicWindowSize=1

[Metadata]
Name=Gameview
Author= Vicious Ned and Dylan Key

[Variables]
TextColour=192,192,192
ShortcutColour=0,0,0,1
MouseOverColour=50,205,50
TextSize=12
Font=Segoe UI
AntiAlias=1
ScreenWidth=#SCREENAREAWIDTH@2#
ScreenHeight=#SCREENAREAHEIGHT@2#
BarWidth=720
TopMargin=10
Spacing=15
LinkArea=26
NumOfApps=(#ScreenHeight#/(#TextSize#+#Spacing#))
WW=15
L1M=15
L2M=15
L3M=15
L4M=15
L5M=15
L6M=15
L7M=15
L8M=15
L9M=15
L10M=15
L11M=15
L12M=15
L13M=15
L14M=15
L15M=15
L16M=15
L17M=15
L18M=15
L19M=15
L20M=15
L21M=15
L22M=15
L23M=15
L24M=15
L25M=15
L26M=15
L27M=15
L28M=15
L29M=15
L30M=15
L31M=15
L32M=15
L33M=15
L34M=15
L35M=15
L36M=15
L37M=15
L38M=15
L39M=15
L40M=15

[StringStyle]
Y=(#Spacing#+#TextSize#)r
H=#LinkArea#
Group=GameGroup
Text=%1
SolidColor=0,0,0,1
FontColor=#TextColour#
FontSize=#TextSize#
FontFace=#Font#
AntiAlias=1
Hidden=1
DynamicVariables=1

[HoverStyle]
Y=0r
SolidColor=0,0,0,1
DynamicVariables=1
UpdateDivider=-1
Group=GameGroup

[MeasureFolder]
Measure=Plugin
Plugin=FileView
Path=#SKINSPATH#
Count=#NumOfApps#
ShowDotDot=1
HideExtensions=1


;*****MEASURES*****


[mLink1]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=1
Group=FileView

[mName1]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=1
Group=FileView

[mLink2]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=2
Group=FileView

[mName2]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=2
Group=FileView

[mLink3]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=3
Group=FileView

[mName3]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=3
Group=FileView

[mLink4]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=4
Group=FileView

[mName4]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=4
Group=FileView

[mLink5]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=5
Group=FileView

[mName5]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=5
Group=FileView

[mLink6]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=6
Group=FileView

[mName6]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=6
Group=FileView

[mLink7]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=7
Group=FileView

[mName7]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=7
Group=FileView

[mLink8]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=8
Group=FileView

[mName8]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=8
Group=FileView

[mLink9]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=9
Group=FileView

[mName9]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=9
Group=FileView

[mLink10]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=10
Group=FileView

[mName10]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=10
Group=FileView

[mLink11]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=11
Group=FileView

[mName11]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=11
Group=FileView

[mLink12]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=12
Group=FileView

[mName12]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=12
Group=FileView

[mLink13]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=13
Group=FileView

[mName13]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=13
Group=FileView

[mLink14]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=14
Group=FileView

[mName14]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=14
Group=FileView

[mLink15]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=15
Group=FileView

[mName15]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=15
Group=FileView

[mLink16]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=16
Group=FileView

[mName16]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=16
Group=FileView

[mLink17]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=17
Group=FileView

[mName17]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=17
Group=FileView

[mLink18]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=18
Group=FileView

[mName18]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=18
Group=FileView

[mLink19]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=19
Group=FileView

[mName19]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=19
Group=FileView

[mLink20]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=20
Group=FileView

[mName20]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=20
Group=FileView

[mLink21]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=21
Group=FileView

[mName21]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=21
Group=FileView

[mLink22]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=22
Group=FileView

[mName22]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=22
Group=FileView

[mLink23]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=23
Group=FileView

[mName23]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=23
Group=FileView

[mLink24]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=24
Group=FileView

[mName24]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=24
Group=FileView

[mLink25]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=25
Group=FileView

[mName25]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=25
Group=FileView

[mLink26]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=26
Group=FileView

[mName26]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=26
Group=FileView

[mLink27]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=27
Group=FileView

[mName27]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=27
Group=FileView

[mLink28]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=28
Group=FileView

[mName28]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=28
Group=FileView

[mLink29]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=29
Group=FileView

[mName29]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=29
Group=FileView

[mLink30]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=30
Group=FileView

[mName30]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=30
Group=FileView

[mLink31]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=31
Group=FileView

[mName31]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=31
Group=FileView

[mLink32]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=32
Group=FileView

[mName32]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=32
Group=FileView

[mLink33]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=33
Group=FileView

[mName33]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=33
Group=FileView

[mLink34]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=34
Group=FileView

[mName34]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=34
Group=FileView

[mLink35]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=35
Group=FileView

[mName35]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=35
Group=FileView

[mLink36]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=36
Group=FileView

[mName36]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=36
Group=FileView

[mLink37]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=37
Group=FileView

[mName37]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=37
Group=FileView

[mLink38]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=38
Group=FileView

[mName38]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=38
Group=FileView

[mLink39]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=39
Group=FileView

[mName39]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=39
Group=FileView

[mLink40]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FilePath
Index=40
Group=FileView

[mName40]
Measure=Plugin
Plugin=FileView
Path=[MeasureFolder]
Type=FileName
Index=40
Group=FileView

;*****METERS*****

[MouseOverBar]
Meter=Image
W=1
H=#ScreenHeight#
SolidColor=0,0,0,1
MouseOverAction=[!ShowMeterGroup GameGroup][!UpdateMeterGroup GameGroup][!Redraw]
;MouseScrollDownAction=[!CommandMeasure mLink][!IndexUp]
;MouseScrollUpAction=[!CommandMeasure mLink] [!IndexDown]

[View]
Meter=Image
Group=GameGroup
W=#ScreenWidth#
H=#ScreenHeight#
PreserveAspectRatio=2
Hidden=1
DynamicVariables=1
ImageName=""

[Background]
Meter=Image
MeasureName=MeasureScroll
Group=GameGroup
SolidColor=22,22,29
;SolidColor2=22,22,29,0
W=#BarWidth#
H=#ScreenHeight#
AntiAlias=1
Hidden=1
;MouseLeaveAction=[!HideMeterGroup GameGroup][!Update]
MouseScrollDownAction=[!CommandMeasure "MeasureFolder" IndexDown][!UpdateMeasureGroup "FileView"][!UpdateMeterGroup "GameGroup"][!Redraw]
MouseScrollUpAction=[!CommandMeasure "MeasureFolder" IndexUp][!UpdateMeasureGroup "FileView"][!UpdateMeterGroup "GameGroup"][!Redraw]

;*****Animation Stuff*****


[MeasureSlide]
Measure=Plugin
Plugin=ActionTimer

ActionList1=Repeat Right1,#WW#,5
Right1=[!SetVariable L1M "(Clamp(#L1M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link1][!Redraw]
ActionList2=Repeat Left1,#WW#,5
Left1=[!SetVariable L1M "(Clamp(#L1M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link1][!Redraw]

ActionList3=Repeat Right2,#WW#,5
Right2=[!SetVariable L2M "(Clamp(#L2M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link2][!Redraw]
ActionList4=Repeat Left2,#WW#,5
Left2=[!SetVariable L2M "(Clamp(#L2M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link2][!Redraw]

ActionList5=Repeat Right3,#WW#,5
Right3=[!SetVariable L3M "(Clamp(#L3M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link3][!Redraw]
ActionList6=Repeat Left3,#WW#,5
Left3=[!SetVariable L3M "(Clamp(#L3M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link3][!Redraw]

ActionList7=Repeat Right4,#WW#,5
Right4=[!SetVariable L4M "(Clamp(#L4M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link4][!Redraw]
ActionList8=Repeat Left4,#WW#,5
Left4=[!SetVariable L4M "(Clamp(#L4M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link4][!Redraw]

ActionList9=Repeat Right5,#WW#,5
Right5=[!SetVariable L5M "(Clamp(#L5M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link5][!Redraw]
ActionList10=Repeat Left5,#WW#,5
Left5=[!SetVariable L5M "(Clamp(#L5M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link5][!Redraw]

ActionList11=Repeat Right6,#WW#,5
Right6=[!SetVariable L6M "(Clamp(#L6M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link6][!Redraw]
ActionList12=Repeat Left6,#WW#,5
Left6=[!SetVariable L6M "(Clamp(#L6M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link6][!Redraw]

ActionList13=Repeat Right7,#WW#,5
Right7=[!SetVariable L7M "(Clamp(#L7M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link7][!Redraw]
ActionList14=Repeat Left7,#WW#,5
Left7=[!SetVariable L7M "(Clamp(#L7M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link7][!Redraw]

ActionList15=Repeat Right8,#WW#,5
Right8=[!SetVariable L8M "(Clamp(#L8M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link8][!Redraw]
ActionList16=Repeat Left8,#WW#,5
Left8=[!SetVariable L8M "(Clamp(#L8M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link8][!Redraw]

ActionList17=Repeat Right9,#WW#,5
Right9=[!SetVariable L9M "(Clamp(#L9M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link9][!Redraw]
ActionList18=Repeat Left9,#WW#,5
Left9=[!SetVariable L9M "(Clamp(#L9M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link9][!Redraw]

ActionList19=Repeat Right10,#WW#,5
Right10=[!SetVariable L10M "(Clamp(#L10M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link10][!Redraw]
ActionList20=Repeat Left10,#WW#,5
Left10=[!SetVariable L10M "(Clamp(#L10M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link10][!Redraw]

ActionList21=Repeat Right11,#WW#,5
Right11=[!SetVariable L11M "(Clamp(#L11M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link11][!Redraw]
ActionList22=Repeat Left11,#WW#,5
Left11=[!SetVariable L11M "(Clamp(#L11M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link11][!Redraw]

ActionList23=Repeat Right12,#WW#,5
Right12=[!SetVariable L12M "(Clamp(#L12M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link12][!Redraw]
ActionList24=Repeat Left12,#WW#,5
Left12=[!SetVariable L12M "(Clamp(#L12M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link12][!Redraw]

ActionList25=Repeat Right13,#WW#,5
Right13=[!SetVariable L13M "(Clamp(#L13M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link13][!Redraw]
ActionList26=Repeat Left13,#WW#,5
Left13=[!SetVariable L13M "(Clamp(#L13M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link13][!Redraw]

ActionList27=Repeat Right14,#WW#,5
Right14=[!SetVariable L14M "(Clamp(#L14M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link14][!Redraw]
ActionList28=Repeat Left14,#WW#,5
Left14=[!SetVariable L14M "(Clamp(#L14M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link14][!Redraw]

ActionList29=Repeat Right15,#WW#,5
Right15=[!SetVariable L15M "(Clamp(#L15M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link15][!Redraw]
ActionList30=Repeat Left15,#WW#,5
Left15=[!SetVariable L15M "(Clamp(#L15M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link15][!Redraw]

ActionList31=Repeat Right16,#WW#,5
Right16=[!SetVariable L16M "(Clamp(#L16M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link16][!Redraw]
ActionList32=Repeat Left16,#WW#,5
Left16=[!SetVariable L16M "(Clamp(#L16M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link16][!Redraw]

ActionList33=Repeat Right17,#WW#,5
Right17=[!SetVariable L17M "(Clamp(#L17M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link17][!Redraw]
ActionList34=Repeat Left17,#WW#,5
Left17=[!SetVariable L17M "(Clamp(#L17M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link17][!Redraw]

ActionList35=Repeat Right18,#WW#,5
Right18=[!SetVariable L18M "(Clamp(#L18M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link18][!Redraw]
ActionList36=Repeat Left18,#WW#,5
Left18=[!SetVariable L18M "(Clamp(#L18M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link18][!Redraw]

ActionList37=Repeat Right19,#WW#,5
Right19=[!SetVariable L19M "(Clamp(#L19M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link19][!Redraw]
ActionList38=Repeat Left19,#WW#,5
Left19=[!SetVariable L19M "(Clamp(#L19M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link19][!Redraw]

ActionList39=Repeat Right20,#WW#,5
Right20=[!SetVariable L20M "(Clamp(#L20M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link20][!Redraw]
ActionList40=Repeat Left20,#WW#,5
Left20=[!SetVariable L20M "(Clamp(#L20M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link20][!Redraw]

ActionList41=Repeat Right21,#WW#,5
Right21=[!SetVariable L21M "(Clamp(#L21M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link21][!Redraw]
ActionList42=Repeat Left21,#WW#,5
Left21=[!SetVariable L21M "(Clamp(#L21M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link21][!Redraw]

ActionList43=Repeat Right22,#WW#,5
Right22=[!SetVariable L22M "(Clamp(#L22M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link22][!Redraw]
ActionList44=Repeat Left22,#WW#,5
Left22=[!SetVariable L22M "(Clamp(#L22M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link22][!Redraw]

ActionList45=Repeat Right23,#WW#,5
Right23=[!SetVariable L23M "(Clamp(#L23M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link23][!Redraw]
ActionList46=Repeat Left23,#WW#,5
Left23=[!SetVariable L23M "(Clamp(#L23M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link23][!Redraw]

ActionList47=Repeat Right24,#WW#,5
Right24=[!SetVariable L24M "(Clamp(#L24M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link24][!Redraw]
ActionList48=Repeat Left24,#WW#,5
Left24=[!SetVariable L24M "(Clamp(#L24M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link24][!Redraw]

ActionList49=Repeat Right25,#WW#,5
Right25=[!SetVariable L25M "(Clamp(#L25M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link25][!Redraw]
ActionList50=Repeat Left25,#WW#,5
Left25=[!SetVariable L25M "(Clamp(#L25M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link25][!Redraw]

ActionList51=Repeat Right26,#WW#,5
Right26=[!SetVariable L26M "(Clamp(#L26M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link26][!Redraw]
ActionList52=Repeat Left26,#WW#,5
Left26=[!SetVariable L26M "(Clamp(#L26M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link26][!Redraw]

ActionList53=Repeat Right27,#WW#,5
Right27=[!SetVariable L27M "(Clamp(#L27M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link27][!Redraw]
ActionList54=Repeat Left27,#WW#,5
Left27=[!SetVariable L27M "(Clamp(#L27M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link27][!Redraw]

ActionList55=Repeat Right28,#WW#,5
Right28=[!SetVariable L28M "(Clamp(#L28M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link28][!Redraw]
ActionList56=Repeat Left28,#WW#,5
Left28=[!SetVariable L28M "(Clamp(#L28M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link28][!Redraw]

ActionList57=Repeat Right29,#WW#,5
Right29=[!SetVariable L29M "(Clamp(#L29M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link29][!Redraw]
ActionList58=Repeat Left29,#WW#,5
Left29=[!SetVariable L29M "(Clamp(#L29M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link29][!Redraw]

ActionList59=Repeat Right30,#WW#,5
Right30=[!SetVariable L30M "(Clamp(#L30M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link30][!Redraw]
ActionList60=Repeat Left30,#WW#,5
Left30=[!SetVariable L30M "(Clamp(#L30M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link30][!Redraw]

ActionList61=Repeat Right31,#WW#,5
Right31=[!SetVariable L31M "(Clamp(#L31M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link31][!Redraw]
ActionList62=Repeat Left31,#WW#,5
Left31=[!SetVariable L31M "(Clamp(#L31M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link31][!Redraw]

ActionList63=Repeat Right32,#WW#,5
Right32=[!SetVariable L32M "(Clamp(#L32M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link32][!Redraw]
ActionList64=Repeat Left32,#WW#,5
Left32=[!SetVariable L32M "(Clamp(#L32M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link32][!Redraw]

ActionList65=Repeat Right33,#WW#,5
Right33=[!SetVariable L33M "(Clamp(#L33M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link33][!Redraw]
ActionList66=Repeat Left33,#WW#,5
Left33=[!SetVariable L33M "(Clamp(#L33M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link33][!Redraw]

ActionList67=Repeat Right34,#WW#,5
Right34=[!SetVariable L34M "(Clamp(#L34M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link34][!Redraw]
ActionList68=Repeat Left34,#WW#,5
Left34=[!SetVariable L34M "(Clamp(#L34M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link34][!Redraw]

ActionList69=Repeat Right35,#WW#,5
Right35=[!SetVariable L35M "(Clamp(#L35M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link35][!Redraw]
ActionList70=Repeat Left35,#WW#,5
Left35=[!SetVariable L35M "(Clamp(#L35M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link35][!Redraw]

ActionList70=Repeat Right36,#WW#,5
Right36=[!SetVariable L36M "(Clamp(#L36M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link36][!Redraw]
ActionList71=Repeat Left36,#WW#,5
Left36=[!SetVariable L36M "(Clamp(#L36M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link36][!Redraw]

ActionList72=Repeat Right37,#WW#,5
Right37=[!SetVariable L37M "(Clamp(#L37M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link37][!Redraw]
ActionList73=Repeat Left37,#WW#,5
Left37=[!SetVariable L37M "(Clamp(#L37M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link37][!Redraw]

ActionList74=Repeat Right38,#WW#,5
Right38=[!SetVariable L38M "(Clamp(#L38M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link38][!Redraw]
ActionList75=Repeat Left38,#WW#,5
Left38=[!SetVariable L38M "(Clamp(#L38M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link38][!Redraw]

ActionList76=Repeat Right39,#WW#,5
Right39=[!SetVariable L39M "(Clamp(#L39M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link39][!Redraw]
ActionList77=Repeat Left39,#WW#,5
Left39=[!SetVariable L39M "(Clamp(#L39M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link39][!Redraw]

ActionList78=Repeat Right40,#WW#,5
Right40=[!SetVariable L40M "(Clamp(#L40M#+10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link40][!Redraw]
ActionList79=Repeat Left40,#WW#,5
Left40=[!SetVariable L40M "(Clamp(#L40M#-10,15,50))"][!UpdateMeasure MeasureSlide][!UpdateMeter Link40][!Redraw]

DynamicVariables=1


;*****LINKS*****

[Link1]
Meter=String
MeasureName=mName1
MeterStyle=StringStyle
X=#L1M#
LeftMouseUpAction=[!CommandMeasure mLink1 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover1]
Meter=Image
MeterStyle=HoverStyle
X=#L1M#
W=([Link1:W]+35)
H=[Link1:H]
MouseOverAction=[!SetOption Link1 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName1]"][!CommandMeasure MeasureSlide "Stop 2"][!CommandMeasure MeasureSlide "Execute 1"][!UpdateMeter "Link1"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link1 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 1"][!CommandMeasure MeasureSlide "Execute 2"][!UpdateMeter "Link1"][!UpdateMeter "View"][!Redraw]

[Link2]
Meter=String
MeasureName=mName2
MeterStyle=StringStyle
X=#L2M#
LeftMouseUpAction=[!CommandMeasure mLink2 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover2]
Meter=Image
MeterStyle=HoverStyle
X=#L2M#
W=([Link2:W]+35)
H=[Link2:H]
MouseOverAction=[!SetOption Link2 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName2]"][!CommandMeasure MeasureSlide "Stop 4"][!CommandMeasure MeasureSlide "Execute 3"][!UpdateMeter "Link2"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link2 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 3"][!CommandMeasure MeasureSlide "Execute 4"][!UpdateMeter "Link2"][!UpdateMeter "View"][!Redraw]

[Link3]
Meter=String
MeasureName=mName3
MeterStyle=StringStyle
X=#L3M#
LeftMouseUpAction=[!CommandMeasure mLink3 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover3]
Meter=Image
MeterStyle=HoverStyle
X=#L3M#
W=([Link3:W]+35)
H=[Link3:H]
MouseOverAction=[!SetOption Link3 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName3]"][!CommandMeasure MeasureSlide "Stop 6"][!CommandMeasure MeasureSlide "Execute 5"][!UpdateMeter "Link3"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link3 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 5"][!CommandMeasure MeasureSlide "Execute 6"][!UpdateMeter "Link3"][!UpdateMeter "View"][!Redraw]

[Link4]
Meter=String
MeasureName=mName4
MeterStyle=StringStyle
X=#L4M#
LeftMouseUpAction=[!CommandMeasure mLink4 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover4]
Meter=Image
MeterStyle=HoverStyle
X=#L4M#
W=([Link4:W]+35)
H=[Link4:H]
MouseOverAction=[!SetOption Link4 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName4]"][!CommandMeasure MeasureSlide "Stop 8"][!CommandMeasure MeasureSlide "Execute 7"][!UpdateMeter "Link4"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link4 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 7"][!CommandMeasure MeasureSlide "Execute 8"][!UpdateMeter "Link4"][!UpdateMeter "View"][!Redraw]

[Link5]
Meter=String
MeasureName=mName5
MeterStyle=StringStyle
X=#L5M#
LeftMouseUpAction=[!CommandMeasure mLink5 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover5]
Meter=Image
MeterStyle=HoverStyle
X=#L5M#
W=([Link5:W]+35)
H=[Link5:H]
MouseOverAction=[!SetOption Link5 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName5]"][!CommandMeasure MeasureSlide "Stop 10"][!CommandMeasure MeasureSlide "Execute 9"][!UpdateMeter "Link5"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link5 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 9"][!CommandMeasure MeasureSlide "Execute 10"][!UpdateMeter "Link5"][!UpdateMeter "View"][!Redraw]

[Link6]
Meter=String
MeasureName=mName6
MeterStyle=StringStyle
X=#L6M#
LeftMouseUpAction=[!CommandMeasure mLink6 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover6]
Meter=Image
MeterStyle=HoverStyle
X=#L6M#
W=([Link6:W]+35)
H=[Link6:H]
MouseOverAction=[!SetOption Link6 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName6]"][!CommandMeasure MeasureSlide "Stop 12"][!CommandMeasure MeasureSlide "Execute 11"][!UpdateMeter "Link6"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link6 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 11"][!CommandMeasure MeasureSlide "Execute 12"][!UpdateMeter "Link6"][!UpdateMeter "View"][!Redraw]

[Link7]
Meter=String
MeasureName=mName7
MeterStyle=StringStyle
X=#L7M#
LeftMouseUpAction=[!CommandMeasure mLink7 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover7]
Meter=Image
MeterStyle=HoverStyle
X=#L7M#
W=([Link7:W]+35)
H=[Link7:H]
MouseOverAction=[!SetOption Link7 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName7]"][!CommandMeasure MeasureSlide "Stop 14"][!CommandMeasure MeasureSlide "Execute 13"][!UpdateMeter "Link7"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link7 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 13"][!CommandMeasure MeasureSlide "Execute 14"][!UpdateMeter "Link7"][!UpdateMeter "View"][!Redraw]

[Link8]
Meter=String
MeasureName=mName8
MeterStyle=StringStyle
X=#L8M#
LeftMouseUpAction=[!CommandMeasure mLink8 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover8]
Meter=Image
MeterStyle=HoverStyle
X=#L8M#
W=([Link8:W]+35)
H=[Link8:H]
MouseOverAction=[!SetOption Link8 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName8]"][!CommandMeasure MeasureSlide "Stop 16"][!CommandMeasure MeasureSlide "Execute 15"][!UpdateMeter "Link8"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link8 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 15"][!CommandMeasure MeasureSlide "Execute 16"][!UpdateMeter "Link8"][!UpdateMeter "View"][!Redraw]

[Link9]
Meter=String
MeasureName=mName9
MeterStyle=StringStyle
X=#L9M#
LeftMouseUpAction=[!CommandMeasure mLink9 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover9]
Meter=Image
MeterStyle=HoverStyle
X=#L9M#
W=([Link9:W]+35)
H=[Link9:H]
MouseOverAction=[!SetOption Link9 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName9]"][!CommandMeasure MeasureSlide "Stop 18"][!CommandMeasure MeasureSlide "Execute 17"][!UpdateMeter "Link9"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link9 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 17"][!CommandMeasure MeasureSlide "Execute 18"][!UpdateMeter "Link9"][!UpdateMeter "View"][!Redraw]

[Link10]
Meter=String
MeasureName=mName10
MeterStyle=StringStyle
X=#L10M#
LeftMouseUpAction=[!CommandMeasure mLink10 FollowPath][!HideMeterGroup GameGroup][!Update]
;Hianyzott

[MeterMouseHover10]
Meter=Image
MeterStyle=HoverStyle
X=#L10M#
W=([Link10:W]+35)
H=[Link10:H]
MouseOverAction=[!SetOption Link10 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName10]"][!CommandMeasure MeasureSlide "Stop 20"][!CommandMeasure MeasureSlide "Execute 19"][!UpdateMeter "Link10"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link10 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 19"][!CommandMeasure MeasureSlide "Execute 20"][!UpdateMeter "Link10"][!UpdateMeter "View"][!Redraw]

[Link11]
Meter=String
MeasureName=mName11
MeterStyle=StringStyle
X=#L11M#
LeftMouseUpAction=[!CommandMeasure mLink11 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover11]
Meter=Image
MeterStyle=HoverStyle
X=#L11M#
W=([Link11:W]+35)
H=[Link11:H]
MouseOverAction=[!SetOption Link11 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName11]"][!CommandMeasure MeasureSlide "Stop 22"][!CommandMeasure MeasureSlide "Execute 21"][!UpdateMeter "Link11"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link11 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 21"][!CommandMeasure MeasureSlide "Execute 22"][!UpdateMeter "Link11"][!UpdateMeter "View"][!Redraw]

[Link12]
Meter=String
MeasureName=mName12
MeterStyle=StringStyle
X=#L12M#
LeftMouseUpAction=[!CommandMeasure mLink12 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover12]
Meter=Image
MeterStyle=HoverStyle
X=#L12M#
W=([Link12:W]+35)
H=[Link12:H]
MouseOverAction=[!SetOption Link12 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName12]"][!CommandMeasure MeasureSlide "Stop 24"][!CommandMeasure MeasureSlide "Execute 23"][!UpdateMeter "Link12"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link12 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 23"][!CommandMeasure MeasureSlide "Execute 24"][!UpdateMeter "Link12"][!UpdateMeter "View"][!Redraw]

[Link13]
Meter=String
MeasureName=mName13
MeterStyle=StringStyle
X=#L13M#
LeftMouseUpAction=[!CommandMeasure mLink13 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover13]
Meter=Image
MeterStyle=HoverStyle
X=#L13M#
W=([Link13:W]+35)
H=[Link13:H]
MouseOverAction=[!SetOption Link13 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName13]"][!CommandMeasure MeasureSlide "Stop 26"][!CommandMeasure MeasureSlide "Execute 25"][!UpdateMeter "Link13"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link13 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 25"][!CommandMeasure MeasureSlide "Execute 26"][!UpdateMeter "Link13"][!UpdateMeter "View"][!Redraw]

[Link14]
Meter=String
MeasureName=mName14
MeterStyle=StringStyle
X=#L14M#
LeftMouseUpAction=[!CommandMeasure mLink14 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover14]
Meter=Image
MeterStyle=HoverStyle
X=#L14M#
W=([Link14:W]+35)
H=[Link14:H]
MouseOverAction=[!SetOption Link14 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName14]"][!CommandMeasure MeasureSlide "Stop 28"][!CommandMeasure MeasureSlide "Execute 27"][!UpdateMeter "Link14"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link14 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 27"][!CommandMeasure MeasureSlide "Execute 28"][!UpdateMeter "Link14"][!UpdateMeter "View"][!Redraw]

[Link15]
Meter=String
MeasureName=mName15
MeterStyle=StringStyle
X=#L15M#
LeftMouseUpAction=[!CommandMeasure mLink15 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover15]
Meter=Image
MeterStyle=HoverStyle
X=#L15M#
W=([Link15:W]+35)
H=[Link15:H]
MouseOverAction=[!SetOption Link15 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName15]"][!CommandMeasure MeasureSlide "Stop 30"][!CommandMeasure MeasureSlide "Execute 29"][!UpdateMeter "Link15"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link15 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 29"][!CommandMeasure MeasureSlide "Execute 30"][!UpdateMeter "Link15"][!UpdateMeter "View"][!Redraw]

[Link16]
Meter=String
MeasureName=mName16
MeterStyle=StringStyle
X=#L16M#
LeftMouseUpAction=[!CommandMeasure mLink16 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover16]
Meter=Image
MeterStyle=HoverStyle
X=#L16M#
W=([Link16:W]+35)
H=[Link16:H]
MouseOverAction=[!SetOption Link16 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName16]"][!CommandMeasure MeasureSlide "Stop 32"][!CommandMeasure MeasureSlide "Execute 31"][!UpdateMeter "Link16"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link16 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 31"][!CommandMeasure MeasureSlide "Execute 32"][!UpdateMeter "Link16"][!UpdateMeter "View"][!Redraw]

[Link17]
Meter=String
MeasureName=mName17
MeterStyle=StringStyle
X=#L17M#
LeftMouseUpAction=[!CommandMeasure mLink17 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover17]
Meter=Image
MeterStyle=HoverStyle
X=#L17M#
W=([Link17:W]+35)
H=[Link17:H]
MouseOverAction=[!SetOption Link17 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName17]"][!CommandMeasure MeasureSlide "Stop 34"][!CommandMeasure MeasureSlide "Execute 33"][!UpdateMeter "Link17"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link17 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 33"][!CommandMeasure MeasureSlide "Execute 34"][!UpdateMeter "Link17"][!UpdateMeter "View"][!Redraw]

[Link18]
Meter=String
MeasureName=mName18
MeterStyle=StringStyle
X=#L18M#
LeftMouseUpAction=[!CommandMeasure mLink18 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover18]
Meter=Image
MeterStyle=HoverStyle
X=#L18M#
W=([Link18:W]+35)
H=[Link18:H]
MouseOverAction=[!SetOption Link18 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName18]"][!CommandMeasure MeasureSlide "Stop 36"][!CommandMeasure MeasureSlide "Execute 35"][!UpdateMeter "Link18"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link18 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 35"][!CommandMeasure MeasureSlide "Execute 36"][!UpdateMeter "Link18"][!UpdateMeter "View"][!Redraw]

[Link19]
Meter=String
MeasureName=mName19
MeterStyle=StringStyle
X=#L19M#
LeftMouseUpAction=[!CommandMeasure mLink19 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover19]
Meter=Image
MeterStyle=HoverStyle
X=#L19M#
W=([Link19:W]+35)
H=[Link19:H]
MouseOverAction=[!SetOption Link19 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName19]"][!CommandMeasure MeasureSlide "Stop 38"][!CommandMeasure MeasureSlide "Execute 37"][!UpdateMeter "Link19"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link19 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 37"][!CommandMeasure MeasureSlide "Execute 38"][!UpdateMeter "Link19"][!UpdateMeter "View"][!Redraw]

[Link20]
Meter=String
MeasureName=mName20
MeterStyle=StringStyle
X=#L20M#
LeftMouseUpAction=[!CommandMeasure mLink20 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover20]
Meter=Image
MeterStyle=HoverStyle
X=#L20M#
W=([Link20:W]+35)
H=[Link20:H]
MouseOverAction=[!SetOption Link20 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName20]"][!CommandMeasure MeasureSlide "Stop 40"][!CommandMeasure MeasureSlide "Execute 39"][!UpdateMeter "Link20"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link20 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 39"][!CommandMeasure MeasureSlide "Execute 40"][!UpdateMeter "Link20"][!UpdateMeter "View"][!Redraw]

[Link21]
Meter=String
MeasureName=mName21
MeterStyle=StringStyle
X=#L21M#
LeftMouseUpAction=[!CommandMeasure mLink21 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover21]
Meter=Image
MeterStyle=HoverStyle
X=#L20M#
W=([Link21:W]+35)
H=[Link21:H]
MouseOverAction=[!SetOption Link21 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName21]"][!CommandMeasure MeasureSlide "Stop 42"][!CommandMeasure MeasureSlide "Execute 41"][!UpdateMeter "Link21"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link21 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 41"][!CommandMeasure MeasureSlide "Execute 42"][!UpdateMeter "Link21"][!UpdateMeter "View"][!Redraw]

[Link22]
Meter=String
MeasureName=mName22
MeterStyle=StringStyle
X=#L22M#
LeftMouseUpAction=[!CommandMeasure mLink22 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover22]
Meter=Image
MeterStyle=HoverStyle
X=#L22M#
W=([Link22:W]+35)
H=[Link22:H]
MouseOverAction=[!SetOption Link22 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName22]"][!CommandMeasure MeasureSlide "Stop 44"][!CommandMeasure MeasureSlide "Execute 43"][!UpdateMeter "Link22"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link22 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 43"][!CommandMeasure MeasureSlide "Execute 44"][!UpdateMeter "Link22"][!UpdateMeter "View"][!Redraw]

[Link23]
Meter=String
MeasureName=mName23
MeterStyle=StringStyle
X=#L23M#
LeftMouseUpAction=[!CommandMeasure mLink23 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover23]
Meter=Image
MeterStyle=HoverStyle
X=#L23M#
W=([Link23:W]+35)
H=[Link23:H]
MouseOverAction=[!SetOption Link23 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName23]"][!CommandMeasure MeasureSlide "Stop 46"][!CommandMeasure MeasureSlide "Execute 45"][!UpdateMeter "Link23"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link23 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 45"][!CommandMeasure MeasureSlide "Execute 46"][!UpdateMeter "Link23"][!UpdateMeter "View"][!Redraw]

[Link24]
Meter=String
MeasureName=mName24
MeterStyle=StringStyle
X=#L24M#
LeftMouseUpAction=[!CommandMeasure mLink24 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover24]
Meter=Image
MeterStyle=HoverStyle
X=#L24M#
W=([Link24:W]+35)
H=[Link24:H]
MouseOverAction=[!SetOption Link24 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName24]"][!CommandMeasure MeasureSlide "Stop 48"][!CommandMeasure MeasureSlide "Execute 47"][!UpdateMeter "Link24"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link24 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 47"][!CommandMeasure MeasureSlide "Execute 48"][!UpdateMeter "Link24"][!UpdateMeter "View"][!Redraw]

[Link25]
Meter=String
MeasureName=mName25
MeterStyle=StringStyle
X=#L25M#
LeftMouseUpAction=[!CommandMeasure mLink25 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover25]
Meter=Image
MeterStyle=HoverStyle
X=#L25M#
W=([Link25:W]+35)
H=[Link25:H]
MouseOverAction=[!SetOption Link25 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName25]"][!CommandMeasure MeasureSlide "Stop 50"][!CommandMeasure MeasureSlide "Execute 49"][!UpdateMeter "Link25"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link25 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 49"][!CommandMeasure MeasureSlide "Execute 50"][!UpdateMeter "Link25"][!UpdateMeter "View"][!Redraw]

[Link26]
Meter=String
MeasureName=mName26
MeterStyle=StringStyle
X=#L26M#
LeftMouseUpAction=[!CommandMeasure mLink26 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover26]
Meter=Image
MeterStyle=HoverStyle
X=#L26M#
W=([Link26:W]+35)
H=[Link26:H]
MouseOverAction=[!SetOption Link26 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName26]"][!CommandMeasure MeasureSlide "Stop 52"][!CommandMeasure MeasureSlide "Execute 51"][!UpdateMeter "Link26"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link26 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 51"][!CommandMeasure MeasureSlide "Execute 52"][!UpdateMeter "Link26"][!UpdateMeter "View"][!Redraw]

[Link27]
Meter=String
MeasureName=mName27
MeterStyle=StringStyle
X=#L27M#
LeftMouseUpAction=[!CommandMeasure mLink27 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover27]
Meter=Image
MeterStyle=HoverStyle
X=#L27M#
W=([Link27:W]+35)
H=[Link27:H]
MouseOverAction=[!SetOption Link27 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName27]"][!CommandMeasure MeasureSlide "Stop 54"][!CommandMeasure MeasureSlide "Execute 53"][!UpdateMeter "Link27"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link27 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 53"][!CommandMeasure MeasureSlide "Execute 54"][!UpdateMeter "Link27"][!UpdateMeter "View"][!Redraw]

[Link28]
Meter=String
MeasureName=mName28
MeterStyle=StringStyle
X=#L28M#
LeftMouseUpAction=[!CommandMeasure mLink28 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover28]
Meter=Image
MeterStyle=HoverStyle
X=#L28M#
W=([Link28:W]+35)
H=[Link28:H]
MouseOverAction=[!SetOption Link28 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName28]"][!CommandMeasure MeasureSlide "Stop 56"][!CommandMeasure MeasureSlide "Execute 55"][!UpdateMeter "Link28"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link28 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 55"][!CommandMeasure MeasureSlide "Execute 56"][!UpdateMeter "Link28"][!UpdateMeter "View"][!Redraw]

[Link29]
Meter=String
MeasureName=mName29
MeterStyle=StringStyle
X=#L29M#
LeftMouseUpAction=[!CommandMeasure mLink29 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover29]
Meter=Image
MeterStyle=HoverStyle
X=#L29M#
W=([Link29:W]+35)
H=[Link29:H]
MouseOverAction=[!SetOption Link29 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName29]"][!CommandMeasure MeasureSlide "Stop 58"][!CommandMeasure MeasureSlide "Execute 57"][!UpdateMeter "Link29"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link29 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 57"][!CommandMeasure MeasureSlide "Execute 58"][!UpdateMeter "Link29"][!UpdateMeter "View"][!Redraw]

[Link30]
Meter=String
MeasureName=mName30
MeterStyle=StringStyle
X=#L30M#
LeftMouseUpAction=[!CommandMeasure mLink30 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover30]
Meter=Image
MeterStyle=HoverStyle
X=#L30M#
W=([Link30:W]+35)
H=[Link30:H]
MouseOverAction=[!SetOption Link30 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName30]"][!CommandMeasure MeasureSlide "Stop 60"][!CommandMeasure MeasureSlide "Execute 59"][!UpdateMeter "Link30"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link30 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 59"][!CommandMeasure MeasureSlide "Execute 60"][!UpdateMeter "Link30"][!UpdateMeter "View"][!Redraw]

[Link31]
Meter=String
MeasureName=mName31
MeterStyle=StringStyle
X=#L31M#
LeftMouseUpAction=[!CommandMeasure mLink31 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover31]
Meter=Image
MeterStyle=HoverStyle
X=#L31M#
W=([Link31:W]+35)
H=[Link31:H]
MouseOverAction=[!SetOption Link31 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName31]"][!CommandMeasure MeasureSlide "Stop 62"][!CommandMeasure MeasureSlide "Execute 61"][!UpdateMeter "Link31"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link31 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 61"][!CommandMeasure MeasureSlide "Execute 62"][!UpdateMeter "Link31"][!UpdateMeter "View"][!Redraw]

[Link32]
Meter=String
MeasureName=mName32
MeterStyle=StringStyle
X=#L32M#
LeftMouseUpAction=[!CommandMeasure mLink32 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover32]
Meter=Image
MeterStyle=HoverStyle
X=#L32M#
W=([Link32:W]+35)
H=[Link32:H]
MouseOverAction=[!SetOption Link32 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName32]"][!CommandMeasure MeasureSlide "Stop 64"][!CommandMeasure MeasureSlide "Execute 63"][!UpdateMeter "Link32"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link32 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 63"][!CommandMeasure MeasureSlide "Execute 64"][!UpdateMeter "Link32"][!UpdateMeter "View"][!Redraw]

[Link33]
Meter=String
MeasureName=mName33
MeterStyle=StringStyle
X=#L33M#
LeftMouseUpAction=[!CommandMeasure mLink33 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover33]
Meter=Image
MeterStyle=HoverStyle
X=#L33M#
W=([Link33:W]+35)
H=[Link33:H]
MouseOverAction=[!SetOption Link32 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName33]"][!CommandMeasure MeasureSlide "Stop 66"][!CommandMeasure MeasureSlide "Execute 65"][!UpdateMeter "Link33"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link32 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 65"][!CommandMeasure MeasureSlide "Execute 66"][!UpdateMeter "Link33"][!UpdateMeter "View"][!Redraw]

[Link34]
Meter=String
MeasureName=mName34
MeterStyle=StringStyle
X=#L34M#
LeftMouseUpAction=[!CommandMeasure mLink34 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover34]
Meter=Image
MeterStyle=HoverStyle
X=#L34M#
W=([Link34:W]+35)
H=[Link34:H]
MouseOverAction=[!SetOption Link34 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName34]"][!CommandMeasure MeasureSlide "Stop 68"][!CommandMeasure MeasureSlide "Execute 67"][!UpdateMeter "Link34"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link34 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 67"][!CommandMeasure MeasureSlide "Execute 68"][!UpdateMeter "Link34"][!UpdateMeter "View"][!Redraw]

[Link35]
Meter=String
MeasureName=mName35
MeterStyle=StringStyle
X=#L35M#
LeftMouseUpAction=[!CommandMeasure mLink35 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover35]
Meter=Image
MeterStyle=HoverStyle
X=#L35M#
W=([Link35:W]+35)
H=[Link35:H]
MouseOverAction=[!SetOption Link35 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName35]"][!CommandMeasure MeasureSlide "Stop 70"][!CommandMeasure MeasureSlide "Execute 69"][!UpdateMeter "Link35"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link35 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 69"][!CommandMeasure MeasureSlide "Execute 70"][!UpdateMeter "Link35"][!UpdateMeter "View"][!Redraw]

[Link36]
Meter=String
MeasureName=mName36
MeterStyle=StringStyle
X=#L36M#
LeftMouseUpAction=[!CommandMeasure mLink36 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover36]
Meter=Image
MeterStyle=HoverStyle
X=#L36M#
W=([Link36:W]+35)
H=[Link36:H]
MouseOverAction=[!SetOption Link36 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName36]"][!CommandMeasure MeasureSlide "Stop 72"][!CommandMeasure MeasureSlide "Execute 71"][!UpdateMeter "Link36"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link36 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 71"][!CommandMeasure MeasureSlide "Execute 72"][!UpdateMeter "Link36"][!UpdateMeter "View"][!Redraw]

[Link37]
Meter=String
MeasureName=mName37
MeterStyle=StringStyle
X=#L37M#
LeftMouseUpAction=[!CommandMeasure mLink37 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover37]
Meter=Image
MeterStyle=HoverStyle
X=#L37M#
W=([Link37:W]+35)
H=[Link37:H]
MouseOverAction=[!SetOption Link37 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName37]"][!CommandMeasure MeasureSlide "Stop 74"][!CommandMeasure MeasureSlide "Execute 73"][!UpdateMeter "Link37"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link37 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 73"][!CommandMeasure MeasureSlide "Execute 74"][!UpdateMeter "Link37"][!UpdateMeter "View"][!Redraw]

[Link38]
Meter=String
MeasureName=mName38
MeterStyle=StringStyle
X=#L38M#
LeftMouseUpAction=[!CommandMeasure mLink38 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover38]
Meter=Image
MeterStyle=HoverStyle
X=#L38M#
W=([Link38:W]+35)
H=[Link38:H]
MouseOverAction=[!SetOption Link38 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName38]"][!CommandMeasure MeasureSlide "Stop 76"][!CommandMeasure MeasureSlide "Execute 75"][!UpdateMeter "Link38"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link38 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 75"][!CommandMeasure MeasureSlide "Execute 76"][!UpdateMeter "Link38"][!UpdateMeter "View"][!Redraw]

[Link39]
Meter=String
MeasureName=mName39
MeterStyle=StringStyle
X=#L39M#
LeftMouseUpAction=[!CommandMeasure mLink39 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover39]
Meter=Image
MeterStyle=HoverStyle
X=#L39M#
W=([Link39:W]+35)
H=[Link39:H]
MouseOverAction=[!SetOption Link39 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName39]"][!CommandMeasure MeasureSlide "Stop 78"][!CommandMeasure MeasureSlide "Execute 77"][!UpdateMeter "Link39"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link39 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 77"][!CommandMeasure MeasureSlide "Execute 78"][!UpdateMeter "Link39"][!UpdateMeter "View"][!Redraw]

[Link40]
Meter=String
MeasureName=mName40
MeterStyle=StringStyle
X=#L40M#
LeftMouseUpAction=[!CommandMeasure mLink40 FollowPath][!HideMeterGroup GameGroup][!Update]

[MeterMouseHover40]
Meter=Image
MeterStyle=HoverStyle
X=#L40M#
W=([Link40:W]+35)
H=[Link40:H]
MouseOverAction=[!SetOption Link40 FontColor #MouseOverColour#][!SetOption View ImageName "#@#\Images\[mName40]"][!CommandMeasure MeasureSlide "Stop 80"][!CommandMeasure MeasureSlide "Execute 79"][!UpdateMeter "Link40"][!UpdateMeter "View"][!Redraw]
MouseLeaveAction=[!SetOption Link40 FontColor #TextColour#][!SetOption View ImageName ""][!CommandMeasure MeasureSlide "Stop 79"][!CommandMeasure MeasureSlide "Execute 80"][!UpdateMeter "Link40"][!UpdateMeter "View"][!Redraw]
User avatar
hyprdmg
Posts: 44
Joined: May 23rd, 2010, 5:05 pm

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by hyprdmg »

balala wrote: September 6th, 2019, 6:30 pm
  • Instead of adding each option to all similar meters, I added two style sections ([StringStyle] and [HoverStyle]) and used these ones on all [LinkXX] and [MeterMouseHoverXX] meters, along with removing from the meters all options used into the style sections. This reduces dramatically the size of the .ini file.
I was recently looking into this. Happy to see this.
balala wrote: September 6th, 2019, 6:30 pm [*]The SolidColor=0,0,0,1 option alone is useless into the [Rainmeter] section. To apply this background color to the whole skin, you also need a BackgroundMode=2 option into the same [Rainmeter] section. Added as well.
I never understood the point of this myself (and have removed it, as I see no point of having it).
balala wrote: September 6th, 2019, 6:30 pm [*]I replaced the ShowDotDot=0 option of the [MeasureFolder] measure with ShowDotDot=1. I did this because with the old option there is not possible to exit from an once opened folder. Using ShowDotDot=1, there always is a first element which clicked get you out from the current folder (if the old behavior is desired, change the option back to 0).[/list]
I personally don't use this, as I just have shortcuts for my games/programs in the shortcut folder (and was just an option that came with the skin).

All in all, looks good. I did duplicate my test file, just to make sure I had more than enough links to make use of the scroll feature, and noticed that the bottom 4 links seem to have issues. The 4th from the bottom seems to have no animation at all, and the 3 below it don't seem to work properly. Also appears that one of the MouseOverAction does not go away.
Image
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by balala »

hyprdmg wrote: September 6th, 2019, 7:26 pm I was recently looking into this. Happy to see this.
Yes, it might be useful in many times. As said, it can reduce the size of the skins file.
hyprdmg wrote: September 6th, 2019, 7:26 pm I never understood the point of this myself (and have removed it, as I see no point of having it).
Everything is described here. The idea is that if you don't add a BackgroundMode option, this option uses its default value, which is 1 and this means
1 : Transparent background
So accordingly the color set through the SolidColor option is not taken into account. To use it, just have to add the BackgroundMode=2, which means
2 : Fill with a solid color
hyprdmg wrote: September 6th, 2019, 7:26 pm I personally don't use this, as I just have shortcuts for my games/programs in the shortcut folder (and was just an option that came with the skin).
As you wish. As said you can re-replace the ShowDotDot=1 option with ShowDotDot=0.
hyprdmg wrote: September 6th, 2019, 7:26 pm All in all, looks good. I did duplicate my test file, just to make sure I had more than enough links to make use of the scroll feature, and noticed that the bottom 4 links seem to have issues. The 4th from the bottom seems to have no animation at all, and the 3 below it don't seem to work properly. Also appears that one of the MouseOverAction does not go away.
Yes, because there is a small mistake in numbering the ActionList options of the [MeasureSlide] measure. There are two ActionList70 and the number of all later options are decreased accordingly. Renumber them to get them working well.
User avatar
hyprdmg
Posts: 44
Joined: May 23rd, 2010, 5:05 pm

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by hyprdmg »

balala wrote: September 6th, 2019, 8:00 pm The idea is that if you don't add a BackgroundMode option, this option uses its default value, which is 1 and this means

Code: Select all

1 : Transparent background
So accordingly the color set through the SolidColor option is not taken into account. To use it, just have to add the BackgroundMode=2, which means

Code: Select all

2 : Fill with a solid color
I was searching for this but was unable to find any documentation for BackGround mode, so this is good to know!
balala wrote: September 6th, 2019, 8:00 pm Yes, because there is a small mistake in numbering the ActionList options of the [MeasureSlide] measure. There are two ActionList70 and the number of all later options are decreased accordingly. Renumber them to get them working well.
And of course I messed up the numbering... my eyes were probably tired from looking at numbers for so long.

Fixed it up and looks perfect now! Thank you very much for all your help!
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by balala »

hyprdmg wrote: September 6th, 2019, 8:18 pm I was searching for this but was unable to find any documentation for BackGround mode, so this is good to know!
Sorry, as usually, I again forgot to add the link. Here it is: https://docs.rainmeter.net/manual/skins/rainmeter-section/#BackgroundOptions
hyprdmg wrote: September 6th, 2019, 8:18 pm And of course I messed up the numbering... my eyes were probably tired from looking at numbers for so long.

Fixed it up and looks perfect now! Thank you very much for all your help!
Not sure you have messed it up. Maybe I am (was) the guilty. But doesn't matter too much I think, since it is fixed now.
You're welcome.
User avatar
hyprdmg
Posts: 44
Joined: May 23rd, 2010, 5:05 pm

Re: ActionTimer Has Effects on Other Meters & ActionTimer 'Area'

Post by hyprdmg »

After getting home and testing the skin, I noticed that it is now very CPU intensive when actually using images.

Looks like I have the option of 'fancy' hover options, over shortcut images.

Edit: Turning hardware acceleration on actually helped a lot (had it off as it caused issues on a previous rainmeter version).