Hi @FOC ,
So assume this App screen includes multiple Labels which is the popups you are referring to, there are also quite a lot Labels displaying information or URLs with small text size as well. If you would like to make app users click on an information Label to show the corresponding popup Label, you could set variables OnSelect of each information Label, for example YouTube URL Label:
UpdateContext({varYT:true})
Then set the Visible of the YouTube URL popup Label to:
varYT
Since all popups will need to be close(hide) , you could add a blank Label, set all variables to false OnSelect of it:
UpdateContext({varYT:false});
UpdateContext({varLabel1:false});
UpdateContext({varLabel2:false});
...

Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.