Solved
I want to change the screen with a timer
Thank you for helping.
I want to move to a certain screen when the timer times out.
What kind of implementation should I do?
Thank you.
Thank you for helping.
I want to move to a certain screen when the timer times out.
What kind of implementation should I do?
Thank you.
Standart is create dummy transition in designer and in code call it for example
void Screen2View::handleTickEvent() {
if (tickCounter++ > MENU_TIMEOUT) {
application().gotoScreen8ScreenCoverTransitionWest();
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.