2021-11-08 06:30 PM
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.
Solved! Go to Solution.
2021-11-09 10:30 AM
Standart is create dummy transition in designer and in code call it for example
void Screen2View::handleTickEvent() {
if (tickCounter++ > MENU_TIMEOUT) {
application().gotoScreen8ScreenCoverTransitionWest();
}
}
2021-11-09 10:30 AM
Standart is create dummy transition in designer and in code call it for example
void Screen2View::handleTickEvent() {
if (tickCounter++ > MENU_TIMEOUT) {
application().gotoScreen8ScreenCoverTransitionWest();
}
}
2021-11-09 02:34 PM
Hi MM ..1
Thank you for helping.
Thank you for your professor.
It was realized by the following implementation.
XXXXX: View name
application().gotoXXXXXScreenNoTransition();