Hi I have an app which starts a timer on the second page and then has a stop button which sends you back to the main menu (first page). My problem is when you go back to the second page (the timer) it continues from where you left off instead of going back to 0 like I want it to.
I have settext((int(time)) I can't reset that though.
https://www.dropbox.com/s/nf5n73ebcg2iw ... 193795537#
Develop games in your browser. Powerful, performant & highly capable.
Add a Global variable which stores the time the layout starts. On start store time in it and use the following equation to set the time text:
settext(int(time - LayoutStartTime))
[attachment=0:29slsrju][/attachment:29slsrju]
Thanks so much.