Hi @AdhamFH ,
You can set the visibility of the label as a context variable, this will temporarily hold a piece of information such as the status of the Label's visibility.
Try using this code:
On the OnVisible() Property of the Screen where the Label is located set it to:
UpdateContext({Visibility:true})
Set the Visible() Property of the Label to:
Visibility //this is the variable
On the Timer's OnTimerEnd() Property, set it to:
UpdateContext({Visibility:false})
To quickly test it: set the duration of your timer to "5000".
----------------------------------------------------------------------------
Thanks,
K-A-R-L
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you thought this post was helpful, please give it a Thumbs Up.