Re: TImer and Enable button
Hi @Anonymous,
Do you want to make the button visible after the duration is completed?
If so, you should set the duration as your want, and set a variable on the OnTimeStart property of the Timmer so that the other button could be invisible based on this variable.
1). Set the Timmer with the following properties:
Repeat: false
AutoStart: TimmerTrigger
AutoPause: false
OnTimerEnd: Set(VarVisible,true)
OnTimerStart: Set(VarVisible,false)
2). Set the first Button OnSelect property: Set(TimmerTrigger,true)
3). Set the second Button Visible property: VarVisible