I wonder if there’s a straight forward way of changing the color of a shape or a text “gradiently” from one colour to another?
Like a smooth change from let’s say white all the way to red based on values like wind strength 0kmh (white) to 50kmh (red) or music progress 0%-100%..?
Thank you!
Hi @Williams ,
Here’s my tip on changing the color based on the playback position of an audio track. This tip is applicable to KLWP, KWGT, and KLCK.
EXAMPLE
The following code snippet will change the color of an element, gradually from White to Red, based on the playback position of an audio track. Use it in the Color property (in the Paint tab)
$cm(255,255-255*mi(percent)/100,255-255*mi(percent)/100)$
Preview video
I hope this would help.


Just what I was looking for thanks!