Code:
; ========================================================================================================[Rainmeter]Update=250[Metadata]Name=Author=Information=Version=License=Creative Commons Attribution - Non - Commercial - Share Alike 3.0; ======================================================================================================== MainCode; ======================================================================================================== ; ======================================================================================================== Containers[Variables];; Starting position of first meter 0 index. Number can range from -2 to 0.;PositionY=0;; Each meter is 20px in height. We will show five meters at a time so container needs to be 100px in height.; We have, in total, seven meters so we need to be able to scroll >>2<< off the container bounds.;[MeterContainer]Meter=ShapeShape=Rectangle 0,0,200,100 | Fill Color 255,255,255,255; allow to scroll up/down two positionsMouseScrollUpAction=[!SetVariable PositionY (Clamp(#PositionY#+1,-2,0))][!UpdateMeter Meter1][!Redraw]MouseScrollDownAction=[!SetVariable PositionY (Clamp(#PositionY#-1,-2,0))][!UpdateMeter Meter1][!Redraw]DynamicVariables=1; ======================================================================================================== Measures; ======================================================================================================== Meters[Meter1]Meter=StringContainer=MeterContainerText=Meter 1SolidColor=240,240,240,255X=0rY=(#PositionY#*20)W=200H=20DynamicVariables=1;; All futher meters placed relative to the previous so when [Meter1] moves all the others follow;[Meter2]Meter=StringContainer=MeterContainerText=Meter 2SolidColor=224,224,224,255X=0rY=0RW=200H=20[Meter3]Meter=StringContainer=MeterContainerText=Meter 3SolidColor=208,208,208,255X=0rY=0RW=200H=20[Meter4]Meter=StringContainer=MeterContainerText=Meter 4SolidColor=192,192,192,255X=0rY=0RW=200H=20[Meter5]Meter=StringContainer=MeterContainerText=Meter 5SolidColor=176,176,176,255X=0rY=0RW=200H=20[Meter6]Meter=StringContainer=MeterContainerText=Meter 6SolidColor=160,160,160,255X=0rY=0RW=200H=20[Meter7]Meter=StringContainer=MeterContainerText=Meter 7SolidColor=144,144,144,255X=0rY=0RW=200H=20