It is currently March 29th, 2024, 3:07 pm

Image Colour Cycling

Get help with creating, editing & fixing problems with skins
HughMungus
Posts: 5
Joined: November 12th, 2016, 10:48 pm

Image Colour Cycling

Post by HughMungus »

Hi guys, I'm a bit of a noob and can't figure this out for myself. I am making a desktop background, and I want bits of it to change colour, cycling through. I've already got the image, and I'll put the code I have so far below, but I don't know how to take the number from the loops and put it as the RGB values. Any help is appreciated, thanks :D

Code: Select all

[Rainmeter]
update=1000

[MeasureLoop1]
Measure=Loop
StartValue=0
EndValue=255
Increment=5
LoopCount=0

[MeasureLoop2]
Measure=Loop
StartValue=0
EndValue=255
Increment=3
LoopCount=0

[MeasureLoop3]
Measure=Loop
StartValue=0
EndValue=255
Increment=1
LoopCount=0


[Picture]
Meter=IMAGE
MeasureName=MeasureLoop1
ImageName=D:\Files\Rainmeter stuffs\img.PNG
GreyScale=1
ImageTint=0, 255, 0, 150
mak_kawa
Posts: 908
Joined: December 30th, 2015, 9:47 am

Re: Image Colour Cycling

Post by mak_kawa »

I think this code changes the image dark to light.

Code: Select all

[Rainmeter]
update=100

[MeasureLoop]
Measure=Loop
StartValue=0
EndValue=255
Increment=5
LoopCount=0

[Picture]
Meter=IMAGE
ImageName=img.PNG
GreyScale=1
ImageTint=[MeasureLoop], [MeasureLoop], [MeasureLoop], 150
DynamicVariables=1
HughMungus
Posts: 5
Joined: November 12th, 2016, 10:48 pm

Re: Image Colour Cycling

Post by HughMungus »

Thanks for your quick reply, mak_kawa, it looks like I was just missing the DynamicVariables option. Thanks so much