Hi Community,
I have a timer that has a count down of 30 seconds.
The function for Timer's AutoStart is :
AutoStart = varStartTimer
When Screen1 is on visible, the function goes:
OnVisible = UpdateContext({ varStartTimer : true});
There is an "Edit" checkbox, if the Edit checkbox is checked, the form in that Screen1 becomes editable.
When the "Edit" checkbox is onCheck, the function for OnCheck is follow:
OnCheck =
Set(varEditMode, true);
UpdateContext({varStartTimer: false});
Reset(TimerName);
OnUnCheck =
Set(varEditMode, false);
UpdateContext({varStartTimer: true});
Reset(TimerName);
However, after resetting the timer, the timer doesn't start automatically anymore even the varStartTimer variable is true.
I have tried using "Set(varStartTimer, true)" instead of using UpdateContext but it didn't work either. Please help!
Hi @lliu_western ,
I have found a global variable works best and do a "double reset". Here is a blog I did using a timer that does this.
So at screen OnVisible
Set(vTimer,false);
Set(VTimer(true)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @lliu_western ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
278 | |
236 | |
84 | |
37 | |
35 |
User | Count |
---|---|
356 | |
240 | |
130 | |
71 | |
50 |