It is currently April 19th, 2024, 9:01 pm

setting random color and fade-out effect

Get help with creating, editing & fixing problems with skins
EmmJey
Posts: 14
Joined: August 5th, 2022, 11:18 am

Re: setting random color and fade-out effect

Post by EmmJey »

balala wrote: August 6th, 2022, 6:58 am :o Initially you asked for something else:

In tass_co's code the color of the image doesn't change randomly. It changes continuously, repeating itself and not every 12 seconds.
So please let me know what would you like to achieve. There is possible what you asked for as well, but I work with it only if you are interested. Are you still?
is there another way? that one is already good for me, I just need to understand the colormatrix. If there is another way, how?

this is the original pic
logo_transparent.png
and I want this picture to change its color to anything every 12 seconds
You do not have the required permissions to view the files attached to this post.
User avatar
balala
Rainmeter Sage
Posts: 16147
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: setting random color and fade-out effect

Post by balala »

EmmJey wrote: August 6th, 2022, 7:51 am and I want this picture to change its color to anything every 12 seconds
Here is a brute example of what I'd do. This code has no fade effect, it directly changes the color every 12 seconds (this can be set with the Period variable in the [Variables] section). The color changing is not good enough so far, it definitely has to be improved. But I post the code only to let you see what have I talked about. If it seems alright, I'm gonna add the fade effect as well and gonna try to improve the color change. Just please let me know if you are interested.

Code: Select all

[Rainmeter]
Update=1000

[Variables]
Period=12

[MeasureTime]
Measure=Calc
Formula=( COUNTER % #Period# )
IfCondition=(#CURRENTSECTION#=0)
IfTrueAction=[!UpdateMeasureGroup "Color"][!UpdateMeter "MeterFacebook"][!UpdateMeter "MeterValues"][!Redraw]
DynamicVariables=1

[Measure11]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure12]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure13]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure21]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure22]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure23]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure31]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure32]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure33]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[MeterFacebook]
Meter = Image
ImageName=#@#logo_transparent.png
X=0
Y=0
;LeftMouseUpAction=["www.facebook.com"]
ColorMatrix1=([Measure11]/100); ([Measure12]/100); ([Measure13]/100); 0; 0
ColorMatrix2=([Measure21]/100); ([Measure22]/100); ([Measure23]/100); 0; 0
ColorMatrix3=([Measure31]/100); ([Measure32]/100); ([Measure33]/100); 0; 0
ColorMatrix4=0; 0; 0; 1; 0
ColorMatrix5=0; 0; 0; 0; 1
SolidColor=0,0,0,1
DynamicVariables=1

[MeterValues]
Meter=STRING
MeasureName=MeasureTime
MeasureName2=Measure11
MeasureName3=Measure12
MeasureName4=Measure13
MeasureName5=Measure21
MeasureName6=Measure22
MeasureName7=Measure23
MeasureName8=Measure31
MeasureName9=Measure32
MeasureName10=Measure33
X=0
Y=0
Padding=15,5,15,5
FontColor=220,220,220
FontEffectColor=0,0,0
StringEffect=Shadow
SolidColor=0,0,0,150
FontSize=8
FontFace=Segoe UI
StringStyle=BOLD
StringAlign=LEFT
AntiAlias=1
Text=Time: %1#CRLF#%2; %3; %4#CRLF#%5; %6; %7#CRLF#%8; %9; %10
DynamicVariables=1
Hidden=0
User avatar
tass_co
Posts: 514
Joined: May 4th, 2020, 3:01 pm
Location: Ankara, TURKEY

Re: setting random color and fade-out effect

Post by tass_co »

balala wrote: August 6th, 2022, 9:17 pm The color changing is not good enough so far, it definitely has to be improved.
If you don't mind, I'd love to help with color change :thumbup:
GIF 7.08.2022 02-09-28.gif

Code: Select all

[Rainmeter]
Update=1000

[Variables]
Period=2

[c11]
Measure=Calc
Formula=TRUNC([Measure11]/100)/120
DynamicVariables=1

[c12]
Measure=Calc
Formula=TRUNC([Measure12]/100)/120
DynamicVariables=1

[c13]
Measure=Calc
Formula=TRUNC([Measure13]/100)/120
DynamicVariables=1

[c21]
Measure=Calc
Formula=TRUNC([Measure21]/100)/120
DynamicVariables=1

[c22]
Measure=Calc
Formula=TRUNC([Measure22]/100)/120
DynamicVariables=1

[c23]
Measure=Calc
Formula=TRUNC([Measure23]/100)/120
DynamicVariables=1

[c31]
Measure=Calc
Formula=TRUNC([Measure31]/100)/120
DynamicVariables=1

[c32]
Measure=Calc
Formula=TRUNC([Measure32]/100)/120
DynamicVariables=1

[c33]
Measure=Calc
Formula=TRUNC([Measure33]/100)/120
DynamicVariables=1


[MeasureTime]
Measure=Calc
Formula=( COUNTER % #Period# )
IfCondition=(#CURRENTSECTION#=0)
IfTrueAction=[!UpdateMeasureGroup "Color"][!UpdateMeter "MeterFacebook"][!UpdateMeter "MeterValues"][!Redraw]
DynamicVariables=1

[Measure11]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure12]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure13]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure21]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure22]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure23]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure31]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure32]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure33]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[MeterFacebook]
Meter = Image
ImageName=facebook.png
X=0
Y=0
W=128
H=128
;LeftMouseUpAction=["www.facebook.com"]
ColorMatrix1=[c11]; [c12]; [c13]; 0; 0
ColorMatrix2=[c21]; [c22]; [c23]; 0; 0
ColorMatrix3=[c31]; [c32]; [c33]; 0; 0
SolidColor=0,0,0,1
DynamicVariables=1

[MeterValues]
Meter=STRING
MeasureName=MeasureTime
MeasureName2=c11
MeasureName3=c12
MeasureName4=c13
MeasureName5=c21
MeasureName6=c22
MeasureName7=c23
MeasureName8=c31
MeasureName9=c32
MeasureName10=c33
X=0
Y=0
Padding=15,5,15,5
FontColor=220,220,220
FontEffectColor=0,0,0
StringEffect=Shadow
SolidColor=0,0,0,150
FontSize=8
FontFace=Segoe UI
StringStyle=BOLD
StringAlign=LEFT
AntiAlias=1
Text=Time: %1#CRLF#%2; %3; %4#CRLF#%5; %6; %7#CRLF#%8; %9; %10
DynamicVariables=1
Hidden=0
NumOfDecimals=3
You do not have the required permissions to view the files attached to this post.
I don't know where i going from here, but i promise it won't be boring... :great:
EmmJey
Posts: 14
Joined: August 5th, 2022, 11:18 am

Re: setting random color and fade-out effect

Post by EmmJey »

balala wrote: August 6th, 2022, 9:17 pm Here is a brute example of what I'd do. This code has no fade effect, it directly changes the color every 12 seconds (this can be set with the Period variable in the [Variables] section). The color changing is not good enough so far, it definitely has to be improved. But I post the code only to let you see what have I talked about. If it seems alright, I'm gonna add the fade effect as well and gonna try to improve the color change. Just please let me know if you are interested.

Code: Select all

[Rainmeter]
Update=1000

[Variables]
Period=12

[MeasureTime]
Measure=Calc
Formula=( COUNTER % #Period# )
IfCondition=(#CURRENTSECTION#=0)
IfTrueAction=[!UpdateMeasureGroup "Color"][!UpdateMeter "MeterFacebook"][!UpdateMeter "MeterValues"][!Redraw]
DynamicVariables=1

[Measure11]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure12]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure13]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure21]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure22]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure23]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure31]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure32]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[Measure33]
Measure=Calc
Formula=Random
LowBound=0
HighBound=100
UpdateRandom=1
UpdateDivider=-1
Group=Color

[MeterFacebook]
Meter = Image
ImageName=#@#logo_transparent.png
X=0
Y=0
;LeftMouseUpAction=["www.facebook.com"]
ColorMatrix1=([Measure11]/100); ([Measure12]/100); ([Measure13]/100); 0; 0
ColorMatrix2=([Measure21]/100); ([Measure22]/100); ([Measure23]/100); 0; 0
ColorMatrix3=([Measure31]/100); ([Measure32]/100); ([Measure33]/100); 0; 0
ColorMatrix4=0; 0; 0; 1; 0
ColorMatrix5=0; 0; 0; 0; 1
SolidColor=0,0,0,1
DynamicVariables=1

[MeterValues]
Meter=STRING
MeasureName=MeasureTime
MeasureName2=Measure11
MeasureName3=Measure12
MeasureName4=Measure13
MeasureName5=Measure21
MeasureName6=Measure22
MeasureName7=Measure23
MeasureName8=Measure31
MeasureName9=Measure32
MeasureName10=Measure33
X=0
Y=0
Padding=15,5,15,5
FontColor=220,220,220
FontEffectColor=0,0,0
StringEffect=Shadow
SolidColor=0,0,0,150
FontSize=8
FontFace=Segoe UI
StringStyle=BOLD
StringAlign=LEFT
AntiAlias=1
Text=Time: %1#CRLF#%2; %3; %4#CRLF#%5; %6; %7#CRLF#%8; %9; %10
DynamicVariables=1
Hidden=0
yes, please. but why is the timer not working for me? it only changes color if I refresh rainmeter. is there something I need to change here to make it work?
EmmJey
Posts: 14
Joined: August 5th, 2022, 11:18 am

Re: setting random color and fade-out effect

Post by EmmJey »

tass_co wrote: August 6th, 2022, 11:11 pm If you don't mind, I'd love to help with color change :thumbup:

GIF 7.08.2022 02-09-28.gif

Code: Select all

[Rainmeter]
Update=1000

[Variables]
Period=2

[c11]
Measure=Calc
Formula=TRUNC([Measure11]/100)/120
DynamicVariables=1

[c12]
Measure=Calc
Formula=TRUNC([Measure12]/100)/120
DynamicVariables=1

[c13]
Measure=Calc
Formula=TRUNC([Measure13]/100)/120
DynamicVariables=1

[c21]
Measure=Calc
Formula=TRUNC([Measure21]/100)/120
DynamicVariables=1

[c22]
Measure=Calc
Formula=TRUNC([Measure22]/100)/120
DynamicVariables=1

[c23]
Measure=Calc
Formula=TRUNC([Measure23]/100)/120
DynamicVariables=1

[c31]
Measure=Calc
Formula=TRUNC([Measure31]/100)/120
DynamicVariables=1

[c32]
Measure=Calc
Formula=TRUNC([Measure32]/100)/120
DynamicVariables=1

[c33]
Measure=Calc
Formula=TRUNC([Measure33]/100)/120
DynamicVariables=1


[MeasureTime]
Measure=Calc
Formula=( COUNTER % #Period# )
IfCondition=(#CURRENTSECTION#=0)
IfTrueAction=[!UpdateMeasureGroup "Color"][!UpdateMeter "MeterFacebook"][!UpdateMeter "MeterValues"][!Redraw]
DynamicVariables=1

[Measure11]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure12]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure13]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure21]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure22]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure23]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure31]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure32]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure33]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[MeterFacebook]
Meter = Image
ImageName=facebook.png
X=0
Y=0
W=128
H=128
;LeftMouseUpAction=["www.facebook.com"]
ColorMatrix1=[c11]; [c12]; [c13]; 0; 0
ColorMatrix2=[c21]; [c22]; [c23]; 0; 0
ColorMatrix3=[c31]; [c32]; [c33]; 0; 0
SolidColor=0,0,0,1
DynamicVariables=1

[MeterValues]
Meter=STRING
MeasureName=MeasureTime
MeasureName2=c11
MeasureName3=c12
MeasureName4=c13
MeasureName5=c21
MeasureName6=c22
MeasureName7=c23
MeasureName8=c31
MeasureName9=c32
MeasureName10=c33
X=0
Y=0
Padding=15,5,15,5
FontColor=220,220,220
FontEffectColor=0,0,0
StringEffect=Shadow
SolidColor=0,0,0,150
FontSize=8
FontFace=Segoe UI
StringStyle=BOLD
StringAlign=LEFT
AntiAlias=1
Text=Time: %1#CRLF#%2; %3; %4#CRLF#%5; %6; %7#CRLF#%8; %9; %10
DynamicVariables=1
Hidden=0
NumOfDecimals=3
I gladly accept your offer... but same thing with the code of balala, the timer is not working for me. only changes color if I refresh rainmeter
User avatar
balala
Rainmeter Sage
Posts: 16147
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: setting random color and fade-out effect

Post by balala »

tass_co wrote: August 6th, 2022, 11:11 pm If you don't mind, I'd love to help with color change :thumbup:
No, I don't mind at all. Why would I? The only thing I add is that you should use EmmJey's image, by replacing the ImageName option of the [MeterFacebook] meter with the proper option which uses his image (ImageName=#@#logo_transparent.png) (assuming the downloaded image is placed into the @Resources folder).
User avatar
balala
Rainmeter Sage
Posts: 16147
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: setting random color and fade-out effect

Post by balala »

EmmJey wrote: August 7th, 2022, 9:05 am yes, please. but why is the timer not working for me? it only changes color if I refresh rainmeter. is there something I need to change here to make it work?
EmmJey wrote: August 7th, 2022, 9:06 am I gladly accept your offer... but same thing with the code of balala, the timer is not working for me. only changes color if I refresh rainmeter
I'm extremely surprised, because the code I've posted definitely works for me. Same way it seems tass_co's code is also working (yep, I tried it, however replaced his the ImageName option with the one containing your image, as described above). If none of the posted codes works, please pack the whole config you're working with (either the one containing tass_co's code, or mine) and upload the package here, to can try it out. I'm extremely curious...
User avatar
tass_co
Posts: 514
Joined: May 4th, 2020, 3:01 pm
Location: Ankara, TURKEY

Re: setting random color and fade-out effect

Post by tass_co »

EmmJey wrote: August 7th, 2022, 9:06 am I gladly accept your offer... but same thing with the code of balala, the timer is not working for me. only changes color if I refresh rainmeter
Unfortunately, I had to lower the update rate to 100 for the transition effect to be smooth :(
I am sharing the skin file so that you do not experience the previous renewal problem :great:

Code: Select all

[Rainmeter]
Update=100

[Variables]
Period=12
UU=[!UpdateMeasureGroup "Color"][!UpdateMeter "MeterValues"][!UpdateMeter "MeterFacebook"][!Redraw]
Var=1

[c00]
Measure=Calc
Formula=FRAC([CalcFade]/12)
DynamicVariables=1

[c01]
Measure=Calc
Formula=#Var#
DynamicVariables=1

[c11]
Measure=Calc
Formula=TRUNC([Measure11]/100)/120
DynamicVariables=1

[c12]
Measure=Calc
Formula=TRUNC([Measure12]/100)/120
DynamicVariables=1

[c13]
Measure=Calc
Formula=TRUNC([Measure13]/100)/120
DynamicVariables=1

[c21]
Measure=Calc
Formula=TRUNC([Measure21]/100)/120
DynamicVariables=1

[c22]
Measure=Calc
Formula=TRUNC([Measure22]/100)/120
DynamicVariables=1

[c23]
Measure=Calc
Formula=TRUNC([Measure23]/100)/120
DynamicVariables=1

[c31]
Measure=Calc
Formula=TRUNC([Measure31]/100)/120
DynamicVariables=1

[c32]
Measure=Calc
Formula=TRUNC([Measure32]/100)/120
DynamicVariables=1

[c33]
Measure=Calc
Formula=TRUNC([Measure33]/100)/120
DynamicVariables=1

[MeasureTime]
Measure=Calc
Formula=(MeasureTime +1) % #Period# 
IfEqualValue=((#Period#)-1)
IfEqualAction=[!UnPauseMeasure CalcFade][!DisableMeasure MeasureTime][!SetVariable Var "0"]
UpdateDivider=12

[CalcFade]
Measure=Calc
Formula=(CalcFade - 1+(12))%(12)
IfCondition= CalcFade <1
IfTrueAction=[!PauseMeasure CalcFade][!EnableMeasure MeasureTime][!SetVariable Var "1"]#UU#
DynamicVariables=1


[Measure11]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure12]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure13]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure21]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure22]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure23]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure31]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure32]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[Measure33]
Measure=Calc
Formula=Random
LowBound=0
HighBound=10000
UpdateRandom=1
UpdateDivider=-1
Group=Color
UniqueRandom=1

[MeterFacebook]
Meter = Image
ImageName=#@#logo_transparent.png
X=0
Y=0
W=128
H=128
LeftMouseUpAction=["www.facebook.com"]
ColorMatrix1=[c11]; [c12]; [c13]; 0; 0
ColorMatrix2=[c21]; [c22]; [c23]; 0; 0
ColorMatrix3=[c31]; [c32]; [c33]; [c01]; 0
ColorMatrix4=[c31]; [c32]; [c33]; [c00]; 0
SolidColor=0,0,0,1
DynamicVariables=1

[MeterValues]
Meter=STRING
MeasureName=MeasureTime
MeasureName2=c11
MeasureName3=c12
MeasureName4=c13
MeasureName5=c21
MeasureName6=c22
MeasureName7=c23
MeasureName8=c31
MeasureName9=c32
MeasureName10=c33
X=0
Y=128
Padding=15,5,15,5
FontColor=220,220,220
FontEffectColor=0,0,0
StringEffect=Shadow
SolidColor=0,0,0,150
FontSize=8
FontFace=Segoe UI
StringStyle=BOLD
StringAlign=LEFT
AntiAlias=1
Text=Time: %1#CRLF#%2; %3; %4#CRLF#%5; %6; %7#CRLF#%8; %9; %10
DynamicVariables=1
Hidden=0
NumOfDecimals=3
GIF 8.08.2022 04-45-25.gif
Deneme_1.0.rmskin

ps:I forgot to remove the notification on the meter :Whistle Delete the following line of code to remove it :thumbup:

Code: Select all

[MeterValues]
Meter=STRING
MeasureName=MeasureTime
MeasureName2=c11
MeasureName3=c12
MeasureName4=c13
MeasureName5=c21
MeasureName6=c22
MeasureName7=c23
MeasureName8=c31
MeasureName9=c32
MeasureName10=c33
X=0
Y=128
Padding=15,5,15,5
FontColor=220,220,220
FontEffectColor=0,0,0
StringEffect=Shadow
SolidColor=0,0,0,150
FontSize=8
FontFace=Segoe UI
StringStyle=BOLD
StringAlign=LEFT
AntiAlias=1
Text=Time: %1#CRLF#%2; %3; %4#CRLF#%5; %6; %7#CRLF#%8; %9; %10
DynamicVariables=1
Hidden=0
NumOfDecimals=3
You do not have the required permissions to view the files attached to this post.
I don't know where i going from here, but i promise it won't be boring... :great:
EmmJey
Posts: 14
Joined: August 5th, 2022, 11:18 am

Re: setting random color and fade-out effect

Post by EmmJey »

balala wrote: August 7th, 2022, 6:46 pm I'm extremely surprised, because the code I've posted definitely works for me. Same way it seems tass_co's code is also working (yep, I tried it, however replaced his the ImageName option with the one containing your image, as described above). If none of the posted codes works, please pack the whole config you're working with (either the one containing tass_co's code, or mine) and upload the package here, to can try it out. I'm extremely curious...
hello sorry, I was offline for a day. and I almost forgot to say that your work finally works with me... I saw the problem before was, its because I copied the code incomplete.. but now, it's totally working.. thank you for your help... with your help, I will try to understand how the code works❤... thank you so much
EmmJey
Posts: 14
Joined: August 5th, 2022, 11:18 am

Re: setting random color and fade-out effect

Post by EmmJey »

thank you all for your replies/help... all the codes you've sent me are working properly... :thumbup: