Hey there,
There's a message that appears on the label when certain conditions are met. Is there a way to make it disappear after 1 second (while the conditions still met)? I feel it must be an easy solution, but it keeps escaping me.
Thanks!
Hey there,
There's a message that appears on the label when certain conditions are met. Is there a way to make it disappear after 1 second (while the conditions still met)? I feel it must be an easy solution, but it keeps escaping me.
Thanks!
@Grob0s0VBRa that's it! Thank you! Although it kept showing message when the condition wasn't met anymore, so I had to add it one more time with AND operator.
@iwannabeelected Oi, my bad.
{(1 - floor( smooth(Conditions,1) )) ? "Message" : "" }
This will do.
@Grob0s0VBRa smooth - I think it should be it, thank you. But in this form it does exactly opposite - the message APPEARS after one second when the condition is met. I need it to appear instantly, and disappear after one second.
{ceil( smooth(Conditions,1) ) ? "Message" :"" }
Should work.