if(dontShowHowTo == 'true'){
}else{
Appery.navigateTo('howToPopup', {transition: 'pop'});
}
The error on the console is "dontShowHowTo is not defined". However, when I look at the local resources it is defined with a value of 'false' that it is getting from a Get_User query response.
Essentially, I am trying to have a popup display how to play a game if it is someone's first time and then they have the option of checking a box to not display again which would update the database column to 'true' if selected. Then when the game screen is displayed again it is running this if statement on load to get the value of the local variable; if it is now true the popup shouldn't display and the user can go right into the game.