It is currently March 28th, 2024, 3:08 pm

How to make color transfusion

Get help with creating, editing & fixing problems with skins
dart sinister
Posts: 12
Joined: April 29th, 2020, 4:57 pm

Re: How to make color transfusion

Post by dart sinister »

I tried to connect the script but the color still does not change and became standard (white)
please tell me how to connect

Code: Select all

[Rainmeter]
Update=1000
Author=Connect-R
DynamicWindowSize=1
AccurateText=1
BackgroundMode=2
SolidColor=0,0,0,1


[Variables]
@include=#@#Variables.inc
@include2=#@#Language\#Language#.inc

;-------------------------------------------------------------
;-------------------------------------------------------------
[Calc]
Measure=Calc
Formula=Calc%100+1
[Lua]
Measure=Script
ScriptFile=#@#ColorChanger.lua
Colors=255,0,0|0,255,0|0,0,255
MeasureName=Calc
MaximumValue=100


[MeterBgComponent1]
Meter=Image
X=0
Y=0
W=8
H=135
SolidColor=#Lua#
UpdateDivider=-1

[MeterBgComponent2]
Meter=Image
X=12
Y=0
W=300
H=135
SolidColor=#Lua#
SolidColor2=0,0,0,0
GradientAngle=0
UpdateDivider=-1

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

[MeasureCheckNetwork]
Measure=Plugin
Plugin=SysInf
SysInfoType=INTERNET_CONNECTIVITY
SysInfoData=Best
OnChangeAction=[!CommandMeasure MeasureCurrent "Update"][!CommandMeasure MeasureUnits "Update"]

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

[MeasureCurrent]
Measure=Plugin
Plugin=WebParser.dll
UpdateRate=900
Url=http://wxdata.weather.com/wxdata/weather/local/#Location#?cc=*&unit=#Unit#
RegExp="(?siU)<head>.*<ut>(.*)</ut>.*<tmp>(.*)</tmp>.*<t>(.*)</t>"

[MeasureUnits]
Measure=Plugin
Plugin=WebParser.dll
UpdateRate=900
Url=http://wxdata.weather.com/wxdata/weather/local/#Location#?cc=*&unit=#Unit#&dayf=1
RegExp="(?siU)<head>.*<locale>(.*)</locale>.*<form>(.*)</form>.*<ud>(.*)</ud>.*<us>(.*)</us>.*<up>(.*)</up>"

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

[MeasureTempUnit]
Measure=Plugin
Plugin=WebParser.dll
Url=[MeasureCurrent]
StringIndex=1
Substitute="C":"#Celsius#","F":"#Fahrenheit#"

[MeasureWeatherTemp]
Measure=Plugin
Plugin=WebParser.dll
Url=[MeasureCurrent]
StringIndex=2

[MeasureWeatherCond]
Measure=Plugin
Plugin=WebParser.dll
Url=[MeasureCurrent]
StringIndex=3
Substitute=#Conditions#

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

[MeasureTime]
Measure=Time
Format=%#Format#:%M

[MeasureAMPM]
Measure=Time
Format=%p

[MeasureDay]
Measure=Time
Format=%A
Substitute=#Date#

[MeasureDate]
Measure=Time
Format=%d %B %Y
Substitute=#Date#

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

[MeterClock24h]
Meter=String
MeasureName=MeasureTime
StringAlign=Left
FontColor=#TextColor#
FontFace=Fivo Sans Heavy
FontSize=70
X=150
Y=15
Text="%1"
AntiAlias=1
Hidden=#Hidden#

[MeterClock12h]
Meter=String
MeasureName=MeasureTime
MeasureName2=MeasureAMPM
StringAlign=Left
FontColor=#TextColor#
FontFace=Fivo Sans Heavy
FontSize=50
X=150
Y=15
Text="%1%2"
InlinePattern="[MeasureAMPM]"
InlineSetting=Size | 15
DynamicVariables=1
AntiAlias=1
Hidden=#Hidden2#

[MeterDay]
Meter=String
MeasureName=MeasureDay
StringAlign=CenterCenter
StringCase=Upper
FontColor=#TextColor#
FontFace=Fivo Sans Heavy
FontSize=12
X=20
Y=75
Text="%1"
Angle=(Rad(-90))
AntiAlias=1

[MeterDate]
Meter=String
MeasureName=MeasureDate
StringAlign=Left
FontColor=#TextColor#
FontFace=Fivo Sans Thin
FontSize=20
X=150
Y=105
Text="%1"
AntiAlias=1

;-------------------------------------------------------------
;-------------------------------------------------------------
and the video that I sent as an example of what I'm trying to create, the effect of which in this script suits me too
User avatar
Yincognito
Rainmeter Sage
Posts: 7023
Joined: February 27th, 2015, 2:38 pm
Location: Terra Yincognita

Re: How to make color transfusion

Post by Yincognito »

dart sinister wrote: April 29th, 2020, 10:37 pm I tried to connect the script but the color still does not change and became standard (white)
please tell me how to connect

and the video that I sent as an example of what I'm trying to create, the effect of which in this script suits me too
This code should do it, assuming you have the ColorChanger.lua file in the same folder as the skin file (if you have the ColorChanger.lua file in the @Resources folder, you might modify the ScriptFile option accordingly, just as you did in the last code you posted, i.e. ScriptFile=#@#ColorChanger.lua).

Code:

Code: Select all

[Rainmeter]
Update=#Update#
Author=Connect-R
DynamicWindowSize=1
AccurateText=1
BackgroundMode=2
SolidColor=0,0,0,1
LeftMouseDoubleClickAction=!ToggleConfig "Nelamint\Settings" "Settings.ini"

[Variables]
@include=#@#Variables.inc
@include2=#@#Language\#Language#.inc
Update=50
UpdateDivider=(1000/#Update#)

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

[Calc]
Measure=Calc
Formula=Calc%100+1

[Lua]
Measure=Script
ScriptFile=ColorChanger.lua
Colors=255,0,0|0,255,0|0,0,255
MeasureName=Calc
MaximumValue=100

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

[MeterBgComponent1]
Meter=Image
X=0
Y=0
W=8
H=135
SolidColor=[Lua]
DynamicVariables=1

[MeterBgComponent2]
Meter=Image
X=12
Y=0
W=300
H=135
SolidColor=[Lua]
SolidColor2=0,0,0,0
GradientAngle=0
DynamicVariables=1

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

[MeasureCheckNetwork]
Measure=Plugin
Plugin=SysInf
SysInfoType=INTERNET_CONNECTIVITY
SysInfoData=Best
OnChangeAction=[!CommandMeasure MeasureCurrent "Update"][!CommandMeasure MeasureUnits "Update"]
UpdateDivider=#UpdateDivider#

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

[MeasureCurrent]
Measure=Plugin
Plugin=WebParser.dll
UpdateRate=900*#UpdateDivider#
Url=http://wxdata.weather.com/wxdata/weather/local/#Location#?cc=*&unit=#Unit#
RegExp="(?siU)<head>.*<ut>(.*)</ut>.*<tmp>(.*)</tmp>.*<t>(.*)</t>"

[MeasureUnits]
Measure=Plugin
Plugin=WebParser.dll
UpdateRate=900*#UpdateDivider#
Url=http://wxdata.weather.com/wxdata/weather/local/#Location#?cc=*&unit=#Unit#&dayf=1
RegExp="(?siU)<head>.*<locale>(.*)</locale>.*<form>(.*)</form>.*<ud>(.*)</ud>.*<us>(.*)</us>.*<up>(.*)</up>"

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

[MeasureTempUnit]
Measure=Plugin
Plugin=WebParser.dll
Url=[MeasureCurrent]
StringIndex=1
Substitute="C":"#Celsius#","F":"#Fahrenheit#"
UpdateDivider=#UpdateDivider#

[MeasureWeatherTemp]
Measure=Plugin
Plugin=WebParser.dll
Url=[MeasureCurrent]
StringIndex=2
UpdateDivider=#UpdateDivider#

[MeasureWeatherCond]
Measure=Plugin
Plugin=WebParser.dll
Url=[MeasureCurrent]
StringIndex=3
Substitute=#Conditions#
UpdateDivider=#UpdateDivider#

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

[MeasureTime]
Measure=Time
Format=%#Format#:%M
UpdateDivider=#UpdateDivider#

[MeasureAMPM]
Measure=Time
Format=%p
UpdateDivider=#UpdateDivider#

[MeasureDay]
Measure=Time
Format=%A
Substitute=#Date#
UpdateDivider=#UpdateDivider#

[MeasureDate]
Measure=Time
Format=%d %B %Y
Substitute=#Date#
UpdateDivider=#UpdateDivider#

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

[MeterClock24h]
Meter=String
MeasureName=MeasureTime
StringAlign=Left
FontColor=#TextColor#
FontFace=Fivo Sans Heavy
FontSize=70
X=150
Y=15
Text="%1"
AntiAlias=1
Hidden=#Hidden#
UpdateDivider=#UpdateDivider#

[MeterClock12h]
Meter=String
MeasureName=MeasureTime
MeasureName2=MeasureAMPM
StringAlign=Left
FontColor=#TextColor#
FontFace=Fivo Sans Heavy
FontSize=50
X=150
Y=15
Text="%1%2"
InlinePattern="[MeasureAMPM]"
InlineSetting=Size | 15
DynamicVariables=1
AntiAlias=1
Hidden=#Hidden2#
UpdateDivider=#UpdateDivider#

[MeterDay]
Meter=String
MeasureName=MeasureDay
StringAlign=CenterCenter
StringCase=Upper
FontColor=#TextColor#
FontFace=Fivo Sans Heavy
FontSize=12
X=20
Y=75
Text="%1"
Angle=(Rad(-90))
AntiAlias=1
UpdateDivider=#UpdateDivider#

[MeterDate]
Meter=String
MeasureName=MeasureDate
StringAlign=Left
FontColor=#TextColor#
FontFace=Fivo Sans Thin
FontSize=20
X=150
Y=105
Text="%1"
AntiAlias=1
UpdateDivider=#UpdateDivider#

;-------------------------------------------------------------
;-------------------------------------------------------------
Preview:
ezgif.com-video-to-gif.gif
Hint:
You can modify the speed of the color transition by changing the value of the Update variable in the [Variables] section.

Again, sorry for the delay - it wasn't because of the difficulty of the code, as that was quite easy having Smurfier's script, as you probably noticed as well. The reasons why your last posted code didn't work (and didn't give any sign of color changing) was because, in the [MeterBgComponent1] / [MeterBgComponent2] meters:
- you used #Lua# and not [Lua] in the SolidColor option ([Lua] is a measure, not a variable!)
- you didn't remove or comment the UpdateDivider=-1 line (this line basically updated the meters only on skin load, and they needed to be updated every couple of milliseconds, for the animation to work)
- you didn't add DynamicVariables=1 to the meters (section variables like [Lua] being used in an option value are always dynamic)
Plus, for a smooth and quick transition, the skin's Update in the [Rainmeter] section must be set to a lower value (than the "usual" one second). Therefore, the other measures / meters (except those two that display the color transition) must "compensate" the low update by having a higher UpdateDivider.

Hopefully, you'll get it working from the first attempt. Enjoy! ;-)
dart sinister
Posts: 12
Joined: April 29th, 2020, 4:57 pm

Re: How to make color transfusion

Post by dart sinister »

Many thanks for the help, everything works. only I can not connect the script to one of the skins
I managed to connect to everything else

Code: Select all

[Rainmeter]
Update=#Update#
Author=Connect-R


[Variables]
@include=#@#Variables.inc
Width=5
Height=450
Height2=2
X=1
BarColorFast=[Lua]
BarColorSlow=255,0,0
AverageSize=8
DynamicVariables=1
;-------------------------------------------------------------
;-------------------------------------------------------------
[Calc]
Measure=Calc
Formula=Calc%100+1

[Lua]
Measure=Script
ScriptFile=ColorChanger.lua
Colors=255,0,0|0,255,0|0,0,255
MeasureName=Calc
MaximumValue=100

[MeasureAudioFast]
Measure=Plugin
Plugin=AudioLevel
Port=Output
FFTSize=2048
FFTOverlap=1024
FFTAttack=0
FFTDecay=250
Bands=81
FreqMin=100
FreqMax=16500
Sensitivity=25

[MeasureAudioSlow]
Measure=Plugin
Plugin=AudioLevel
Port=Output
FFTSize=2048
FFTOverlap=1024
FFTAttack=0
FFTDecay=2500
Bands=81
FreqMin=100
FreqMax=16500
Sensitivity=25

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

[MeasureAudioFast_1]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=1
AverageSize=#AverageSize#

[MeasureAudioFast_2]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=2
AverageSize=#AverageSize#

[MeasureAudioFast_3]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=3
AverageSize=#AverageSize#

[MeasureAudioFast_4]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=4
AverageSize=#AverageSize#

[MeasureAudioFast_5]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=5
AverageSize=#AverageSize#

[MeasureAudioFast_6]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=6
AverageSize=#AverageSize#

[MeasureAudioFast_7]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=7
AverageSize=#AverageSize#

[MeasureAudioFast_8]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=8
AverageSize=#AverageSize#

[MeasureAudioFast_9]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=9
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_10]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=10
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_11]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=11
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_12]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=12
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_13]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=13
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_14]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=14
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_15]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=15
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_16]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=16
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_17]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=17
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_18]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=18
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_19]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=19
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_20]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=20
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_21]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=21
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_22]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=22
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_23]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=23
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_24]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=24
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_25]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=25
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_26]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=26
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_27]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=27
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_28]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=28
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_29]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=29
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_30]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=30
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_31]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=31
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_32]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=32
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_33]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=33
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_34]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=34
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_35]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=35
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_36]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=36
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_37]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=37
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_38]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=38
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_39]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=39
AverageSize=#AverageSize#
UpdateDivider=#UpdateDivider#

[MeasureAudioFast_40]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=40
AverageSize=#AverageSize#

[MeasureAudioFast_41]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=41
AverageSize=#AverageSize#

[MeasureAudioFast_42]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=42
AverageSize=#AverageSize#

[MeasureAudioFast_43]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=43
AverageSize=#AverageSize#

[MeasureAudioFast_44]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=44
AverageSize=#AverageSize#

[MeasureAudioFast_45]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=45
AverageSize=#AverageSize#

[MeasureAudioFast_46]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=46
AverageSize=#AverageSize#

[MeasureAudioFast_47]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=47
AverageSize=#AverageSize#

[MeasureAudioFast_48]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=48
AverageSize=#AverageSize#

[MeasureAudioFast_49]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=49
AverageSize=#AverageSize#

[MeasureAudioFast_50]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=50
AverageSize=#AverageSize#

[MeasureAudioFast_51]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=51
AverageSize=#AverageSize#

[MeasureAudioFast_52]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=52
AverageSize=#AverageSize#

[MeasureAudioFast_53]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=53
AverageSize=#AverageSize#

[MeasureAudioFast_54]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=54
AverageSize=#AverageSize#

[MeasureAudioFast_55]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=55
AverageSize=#AverageSize#

[MeasureAudioFast_56]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=56
AverageSize=#AverageSize#

[MeasureAudioFast_57]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=57
AverageSize=#AverageSize#

[MeasureAudioFast_58]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=58
AverageSize=#AverageSize#

[MeasureAudioFast_59]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=59
AverageSize=#AverageSize#

[MeasureAudioFast_60]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=50
AverageSize=#AverageSize#

[MeasureAudioFast_61]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=61
AverageSize=#AverageSize#

[MeasureAudioFast_62]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=62
AverageSize=#AverageSize#

[MeasureAudioFast_63]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=63
AverageSize=#AverageSize#

[MeasureAudioFast_64]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=64
AverageSize=#AverageSize#

[MeasureAudioFast_65]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=65
AverageSize=#AverageSize#

[MeasureAudioFast_66]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=66
AverageSize=#AverageSize#

[MeasureAudioFast_67]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=67
AverageSize=#AverageSize#

[MeasureAudioFast_68]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=68
AverageSize=#AverageSize#

[MeasureAudioFast_69]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=69
AverageSize=#AverageSize#

[MeasureAudioFast_70]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=70
AverageSize=#AverageSize#

[MeasureAudioFast_71]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=71
AverageSize=#AverageSize#

[MeasureAudioFast_72]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=72
AverageSize=#AverageSize#

[MeasureAudioFast_73]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=73
AverageSize=#AverageSize#

[MeasureAudioFast_74]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=74
AverageSize=#AverageSize#

[MeasureAudioFast_75]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=75
AverageSize=#AverageSize#

[MeasureAudioFast_76]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=76
AverageSize=#AverageSize#

[MeasureAudioFast_77]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=77
AverageSize=#AverageSize#

[MeasureAudioFast_78]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=78
AverageSize=#AverageSize#

[MeasureAudioFast_79]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=79
AverageSize=#AverageSize#

[MeasureAudioFast_80]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioFast
Channel=Sum
Type=Band
BandIdx=80
AverageSize=#AverageSize#

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


[MeasureAudioSlow_1]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=1
AverageSize=#AverageSize#

[MeasureAudioSlow_2]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=2
AverageSize=#AverageSize#

[MeasureAudioSlow_3]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=3
AverageSize=#AverageSize#

[MeasureAudioSlow_4]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=4
AverageSize=#AverageSize#

[MeasureAudioSlow_5]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=5
AverageSize=#AverageSize#

[MeasureAudioSlow_6]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=6
AverageSize=#AverageSize#

[MeasureAudioSlow_7]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=7
AverageSize=#AverageSize#

[MeasureAudioSlow_8]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=8
AverageSize=#AverageSize#

[MeasureAudioSlow_9]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=9
AverageSize=#AverageSize#

[MeasureAudioSlow_10]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=10
AverageSize=#AverageSize#

[MeasureAudioSlow_11]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=11
AverageSize=#AverageSize#

[MeasureAudioSlow_12]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=12
AverageSize=#AverageSize#

[MeasureAudioSlow_13]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=13
AverageSize=#AverageSize#

[MeasureAudioSlow_14]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=14
AverageSize=#AverageSize#

[MeasureAudioSlow_15]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=15
AverageSize=#AverageSize#

[MeasureAudioSlow_16]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=16
AverageSize=#AverageSize#

[MeasureAudioSlow_17]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=17
AverageSize=#AverageSize#

[MeasureAudioSlow_18]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=18
AverageSize=#AverageSize#

[MeasureAudioSlow_19]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=19
AverageSize=#AverageSize#

[MeasureAudioSlow_20]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=20
AverageSize=#AverageSize#

[MeasureAudioSlow_21]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=21
AverageSize=#AverageSize#

[MeasureAudioSlow_22]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=22
AverageSize=#AverageSize#

[MeasureAudioSlow_23]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=23
AverageSize=#AverageSize#

[MeasureAudioSlow_24]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=24
AverageSize=#AverageSize#

[MeasureAudioSlow_25]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=25
AverageSize=#AverageSize#

[MeasureAudioSlow_26]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=26
AverageSize=#AverageSize#

[MeasureAudioSlow_27]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=27
AverageSize=#AverageSize#

[MeasureAudioSlow_28]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=28
AverageSize=#AverageSize#

[MeasureAudioSlow_29]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=29
AverageSize=#AverageSize#

[MeasureAudioSlow_30]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=30
AverageSize=#AverageSize#

[MeasureAudioSlow_31]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=31
AverageSize=#AverageSize#

[MeasureAudioSlow_32]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=32
AverageSize=#AverageSize#

[MeasureAudioSlow_33]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=33
AverageSize=#AverageSize#

[MeasureAudioSlow_34]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=34
AverageSize=#AverageSize#

[MeasureAudioSlow_35]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=35
AverageSize=#AverageSize#

[MeasureAudioSlow_36]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=36
AverageSize=#AverageSize#

[MeasureAudioSlow_37]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=37
AverageSize=#AverageSize#

[MeasureAudioSlow_38]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=38
AverageSize=#AverageSize#

[MeasureAudioSlow_39]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=39
AverageSize=#AverageSize#

[MeasureAudioSlow_40]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=40
AverageSize=#AverageSize#

[MeasureAudioSlow_41]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=41
AverageSize=#AverageSize#

[MeasureAudioSlow_42]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=42
AverageSize=#AverageSize#

[MeasureAudioSlow_43]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=43
AverageSize=#AverageSize#

[MeasureAudioSlow_44]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=44
AverageSize=#AverageSize#

[MeasureAudioSlow_45]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=45
AverageSize=#AverageSize#

[MeasureAudioSlow_46]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=46
AverageSize=#AverageSize#

[MeasureAudioSlow_47]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=47
AverageSize=#AverageSize#

[MeasureAudioSlow_48]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=48
AverageSize=#AverageSize#

[MeasureAudioSlow_49]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=49
AverageSize=#AverageSize#

[MeasureAudioSlow_50]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=50
AverageSize=#AverageSize#

[MeasureAudioSlow_51]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=51
AverageSize=#AverageSize#

[MeasureAudioSlow_52]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=52
AverageSize=#AverageSize#

[MeasureAudioSlow_53]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=53
AverageSize=#AverageSize#

[MeasureAudioSlow_54]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=54
AverageSize=#AverageSize#

[MeasureAudioSlow_55]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=55
AverageSize=#AverageSize#

[MeasureAudioSlow_56]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=56
AverageSize=#AverageSize#

[MeasureAudioSlow_57]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=57
AverageSize=#AverageSize#

[MeasureAudioSlow_58]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=58
AverageSize=#AverageSize#

[MeasureAudioSlow_59]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=59
AverageSize=#AverageSize#

[MeasureAudioSlow_60]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=50
AverageSize=#AverageSize#

[MeasureAudioSlow_50]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=60
AverageSize=#AverageSize#

[MeasureAudioSlow_61]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=61
AverageSize=#AverageSize#

[MeasureAudioSlow_62]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=62
AverageSize=#AverageSize#

[MeasureAudioSlow_63]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=63
AverageSize=#AverageSize#

[MeasureAudioSlow_64]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=64
AverageSize=#AverageSize#

[MeasureAudioSlow_65]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=65
AverageSize=#AverageSize#

[MeasureAudioSlow_66]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=66
AverageSize=#AverageSize#

[MeasureAudioSlow_67]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=67
AverageSize=#AverageSize#

[MeasureAudioSlow_68]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=68
AverageSize=#AverageSize#

[MeasureAudioSlow_69]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=69
AverageSize=#AverageSize#

[MeasureAudioSlow_70]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=70
AverageSize=#AverageSize#

[MeasureAudioSlow_71]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=71
AverageSize=#AverageSize#

[MeasureAudioSlow_72]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=72
AverageSize=#AverageSize#

[MeasureAudioSlow_73]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=73
AverageSize=#AverageSize#

[MeasureAudioSlow_74]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=74
AverageSize=#AverageSize#

[MeasureAudioSlow_75]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=75
AverageSize=#AverageSize#

[MeasureAudioSlow_76]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=76
AverageSize=#AverageSize#

[MeasureAudioSlow_77]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=77
AverageSize=#AverageSize#

[MeasureAudioSlow_78]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=78
AverageSize=#AverageSize#

[MeasureAudioSlow_79]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=79
AverageSize=#AverageSize#

[MeasureAudioSlow_80]
Measure=Plugin
Plugin=AudioLevel
Parent=MeasureAudioSlow
Channel=Sum
Type=Band
BandIdx=80
AverageSize=#AverageSize#

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

[MeterLine_1_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_1) * #Height#

[MeterLine_2_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_2) * #Height#

[MeterLine_3_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_3) * #Height#

[MeterLine_4_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_4) * #Height#

[MeterLine_5_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_5) * #Height#

[MeterLine_6_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_6) * #Height#

[MeterLine_7_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_7) * #Height#

[MeterLine_8_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_8) * #Height#

[MeterLine_9_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_9) * #Height#

[MeterLine_10_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_10) * #Height#

[MeterLine_11_pos]
Measure=Calc
Formula=(1 - measureAudioSlow_11) * #Height#

[MeterLine_12_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_12) * #Height#

[MeterLine_13_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_13) * #Height#

[MeterLine_14_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_14) * #Height#

[MeterLine_15_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_15) * #Height#

[MeterLine_16_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_16) * #Height#

[MeterLine_17_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_17) * #Height#

[MeterLine_18_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_18) * #Height#

[MeterLine_19_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_19) * #Height#

[MeterLine_20_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_20) * #Height#

[MeterLine_21_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_21) * #Height#

[MeterLine_22_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_22) * #Height#

[MeterLine_23_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_23) * #Height#

[MeterLine_24_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_24) * #Height#

[MeterLine_25_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_25) * #Height#

[MeterLine_26_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_26) * #Height#

[MeterLine_27_pos]
Measure=Calc
Formula=(1 - measureAudioSlow_27) * #Height#

[MeterLine_28_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_28) * #Height#

[MeterLine_29_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_29) * #Height#

[MeterLine_30_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_30) * #Height#

[MeterLine_31_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_31) * #Height#

[MeterLine_32_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_32) * #Height#

[MeterLine_33_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_33) * #Height#

[MeterLine_34_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_34) * #Height#

[MeterLine_35_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_35) * #Height#

[MeterLine_36_pos]
Measure=Calc
Formula=(1 - measureAudioSlow_36) * #Height#

[MeterLine_37_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_37) * #Height#

[MeterLine_38_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_38) * #Height#

[MeterLine_39_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_39) * #Height#

[MeterLine_40_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_40) * #Height#

[MeterLine_41_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_41) * #Height#

[MeterLine_42_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_42) * #Height#

[MeterLine_43_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_43) * #Height#

[MeterLine_44_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_44) * #Height#

[MeterLine_45_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_45) * #Height#

[MeterLine_46_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_46) * #Height#

[MeterLine_47_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_47) * #Height#

[MeterLine_48_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_48) * #Height#

[MeterLine_49_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_49) * #Height#

[MeterLine_50_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_50) * #Height#

[MeterLine_51_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_51) * #Height#

[meterLine_52_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_52) * #Height#

[MeterLine_53_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_53) * #Height#

[MeterLine_54_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_54) * #Height#

[MeterLine_55_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_55) * #Height#

[MeterLine_56_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_56) * #Height#

[MeterLine_57_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_57) * #Height#

[MeterLine_58_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_58) * #Height#

[MeterLine_59_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_59) * #Height#

[MeterLine_60_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_60) * #Height#

[MeterLine_61_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_61) * #Height#

[MeterLine_62_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_62) * #Height#

[MeterLine_63_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_63) * #Height#

[MeterLine_64_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_64) * #Height#

[MeterLine_65_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_65) * #Height#

[MeterLine_66_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_66) * #Height#

[MeterLine_67_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_67) * #Height#

[MeterLine_68_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_68) * #Height#

[MeterLine_69_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_69) * #Height#

[MeterLine_70_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_70) * #Height#

[MeterLine_71_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_71) * #Height#

[MeterLine_72_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_72) * #Height#

[MeterLine_73_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_73) * #Height#

[MeterLine_74_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_74) * #Height#

[MeterLine_75_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_75) * #Height#

[MeterLine_76_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_76) * #Height#

[MeterLine_77_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_77) * #Height#

[MeterLine_78_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_78) * #Height#

[MeterLine_79_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_79) * #Height#

[MeterLine_80_pos]
Measure=Calc
Formula=(1 - MeasureAudioSlow_80) * #Height#

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

[MeterBar_1]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_1
BarColor=#BarColorFast#
X=#X#
Y=0
W=#Width#
H=#Height#

[MeterLine_1]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_1_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_2]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_2
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_2]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_2_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_3]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_3
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_3]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_3_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_4]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_4
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_4]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_4_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_5]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_5
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_5]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_5_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_6]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_6
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_6]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_6_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_7]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_7
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_7]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_7_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_8]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_8
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_8]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_8_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_9]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_9
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_9]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_9_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_10]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_10
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_10]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_10_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_11]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_11
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_11]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_11_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_12]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_12
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_12]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_12_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_13]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_13
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_13]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_13_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_14]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_14
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_14]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_14_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_15]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_15
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_15]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_15_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_16]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_16
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_16]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_16_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_17]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_17
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_17]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_17_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_18]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_18
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_18]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_18_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_19]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_19
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_19]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_19_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_20]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_20
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_20]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_20_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_21]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_21
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_21]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_21_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_22]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_22
BarColor=#BarColorFast#
X=#X#R
W=#Width#
W=12
H=#Height#

[MeterLine_22]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_22_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_23]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_23
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_23]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_23_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_24]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_24
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_24]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_24_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_25]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_25
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_25]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_25_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_26]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_26
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_26]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_26_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_27]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_27
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_27]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_27_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_28]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_28
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_28]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_28_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_29]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_29
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_29]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_29_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_30]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_30
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_30]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_30_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_31]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_31
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_31]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_31_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_32]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_32
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_32]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_32_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_33]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_33
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_33]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_33_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_34]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_34
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_34]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_34_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_35]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_35
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_35]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_35_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_36]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_36
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_36]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_36_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_37]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_37
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_37]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_37_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_38]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_38
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_38]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_38_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_39]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_39
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_39]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_39_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_40]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_40
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_40]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_40_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_41]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_41
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_41]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_41_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_42]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_42
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_42]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_42_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_43]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_43
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#


[MeterLine_43]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_43_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_44]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_44
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_44]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_44_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_45]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_45
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_45]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_45_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_46]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_46
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_46]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_46_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_47]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_47
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_47]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_47_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_48]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_48
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_48]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_48_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_49]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_49
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_49]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_49_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_50]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_50
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_50]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_50_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_51]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_51
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_51]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_51_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_52]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_52
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_52]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_52_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_53]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_53
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_53]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_53_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_54]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_54
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_54]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_54_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[meterBar_55]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=measureAudioFast_55
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_55]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_55_pos]
W=#Width#
H=#Height2#
DynamicVariables=1


[MeterBar_56]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_56
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_56]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_56_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_57]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_57
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_57]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_57_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_58]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_58
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_58]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_58_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_59]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_59
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_59]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_59_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_60]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_60
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_60]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_60_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_61]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_61
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_61]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_61_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_62]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_62
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_62]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_62_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_63]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_63
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_63]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_63_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_64]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_64
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_64]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_64_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_65]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_65
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_65]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_65_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_66]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_66
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_66]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_66_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_67]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_67
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_67]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_67_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_68]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_68
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_68]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_68_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_69]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_69
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#


[MeterLine_69]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_69_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_70]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_70
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_70]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_70_pos]
W=#Width#
H=#Height2#
DynamicVariables=1


[MeterBar_71]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_71
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_71]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_71_pos]
W=#Width#
H=#Height2#
DynamicVariables=1


[MeterBar_72]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_72
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_72]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_72_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_73]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_73
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_73]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_73_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_74]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_74
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_74]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_74_pos]
W=#Width#
H=#Height2#
DynamicVariables=1


[MeterBar_75]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_75
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_75]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_75_pos]
W=#Width#
H=#Height2#
DynamicVariables=1


[MeterBar_76]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_76
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_76]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_76_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_77]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_77
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_77]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_77_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_78]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_78
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_78]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_78_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_79]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_79
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#

[MeterLine_79]
Meter=Image
SolidColor=#BarColorSlow#
X=0r
Y=[MeterLine_79_pos]
W=#Width#
H=#Height2#
DynamicVariables=1

[MeterBar_80]
Meter=Bar
BarOrientation=Vertical
Flip=NaN
MeasureName=MeasureAudioFast_80
BarColor=#BarColorFast#
X=#X#R
Y=0
W=#Width#
H=#Height#
User avatar
DanDaBear
Posts: 109
Joined: February 23rd, 2018, 3:12 am
Location: United States

Re: How to make color transfusion

Post by DanDaBear »

In your first skin you have:

[Lua]
Measure=Script
ScriptFile=#@#ColorChanger.lua
Colors=255,0,0|0,255,0|0,0,255
MeasureName=Calc
MaximumValue=100

But the one above shows:

[Lua]
Measure=Script
ScriptFile=ColorChanger.lua
Colors=255,0,0|0,255,0|0,0,255
MeasureName=Calc
MaximumValue=100

So add the #@# before ColorChanger.lua
User avatar
Yincognito
Rainmeter Sage
Posts: 7023
Joined: February 27th, 2015, 2:38 pm
Location: Terra Yincognita

Re: How to make color transfusion

Post by Yincognito »

DanDaBear wrote: April 30th, 2020, 1:18 pm In your first skin you have:

[Lua]
Measure=Script
ScriptFile=#@#ColorChanger.lua
Colors=255,0,0|0,255,0|0,0,255
MeasureName=Calc
MaximumValue=100

But the one above shows:

[Lua]
Measure=Script
ScriptFile=ColorChanger.lua
Colors=255,0,0|0,255,0|0,0,255
MeasureName=Calc
MaximumValue=100

So add the #@# before ColorChanger.lua
Unless he decided to put ColorChanger.lua in the same folder as the skin, that is. It's a possibility.

That being said, there are other problems in the code that prevent it from working, like the fact that he sets BarColorFast=[Lua] (which requires dynamic variables, due to the [Lua] section variable) in the [Variables] section (which doesn't support dynamic variables), instead of using the [Lua] section variable directly in the options that he needs to (like BarColor=[Lua], for example). Also, the Update / UpdateDivider variables approach might need a little adjustment in this skin, as I'm not sure he placed #UpdateDivider# in the right places, not to mention he didn't initialize the Update and UpdateDivider variables anywhere in this skin's [Variables] section (like it has been done in the other skin).

The thing is, he should have told us that he wants this color changing to be applied to multiple skins instead of just one, as the whole process could have been simplified by adding the needed parts in an include (.inc) file, and then used as desired in each skin he wanted to. Now it's too late to revert the current approach, so he has to live with it.

I'm a bit busy at the moment, so I don't have time to fix this properly now, but I'll be back soon with a solution (if the solution is not found by then with your help, that is).
User avatar
balala
Rainmeter Sage
Posts: 16109
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: How to make color transfusion

Post by balala »

DanDaBear wrote: April 30th, 2020, 1:18 pm So add the #@# before ColorChanger.lua
Which of these should be used depends on where the ColorChanger.lua script file is. If it is in the @Resources folder (where normally it should be), the ScriptFile option should reflect this (ScriptFile=#@#ColorChanger.lua). But if ColorChanger.lua is in the root config, beside the .ini file, then the ScriptFile option should be accordingly: ScriptFile=ColorChanger.lua.
However I'm not sure what does this mean:
dart sinister wrote: April 30th, 2020, 11:44 am Many thanks for the help, everything works. only I can not connect the script to one of the skins
I managed to connect to everything else
If the .lua file is not in the proper place, nothing is working. For sure. But dart sinister says it is working. So, not extremely sure...
dart sinister
Posts: 12
Joined: April 29th, 2020, 4:57 pm

Re: How to make color transfusion

Post by dart sinister »

Everything works for me, as Yincognito said, and the script with the .ini file is in one place, I could not connect it to only one skin
User avatar
balala
Rainmeter Sage
Posts: 16109
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: How to make color transfusion

Post by balala »

dart sinister wrote: April 30th, 2020, 2:25 pm Everything works for me, as Yincognito said, and the script with the .ini file is in one place, I could not connect it to only one skin
What you mean by
dart sinister wrote: April 30th, 2020, 2:25 pm I could not connect it to only one skin
? :confused:
dart sinister
Posts: 12
Joined: April 29th, 2020, 4:57 pm

Re: How to make color transfusion

Post by dart sinister »

I managed to connect it. At last. Thank you all very much for your help. ;-) :thumbup:
dart sinister
Posts: 12
Joined: April 29th, 2020, 4:57 pm

Re: How to make color transfusion

Post by dart sinister »

balala wrote: April 30th, 2020, 2:41 pm What you mean by
? :confused:
I said that my script did not work with one of the skins. but I understood how to connect. Thanks again
Post Reply