I have some pop ups throughout my app which use variables.
A pop up and text box has the variable 'Popup1' in its Visible function
A button has the OnSelect function set to Set(Popup1, true)
A close icon on the popup has the OnSelect function set to Set(Popup1, false)
I have done this on other apps and it works fine, the pop up is not visible until the button is clicked to show it.
On the current app I'm working on however, all variables are showing on the screen on starting the app. So the pop ups are visible, you have to press the close icon to hide them, then it works as it should from then on.
Considering this hasn't happened before I'm not sure if this is a bug or if I'm missing something. To my understanding, global variables should be blank or 'false' as standard. Any ideas?
I'm guessing I can get around this by setting the OnStart to Set all variables to False, but there are a lot of variables and I'd rather not do this if I don't have to.