Hello guys I need your help,
I have 2 buttons and 2 labels. They are called button1, label1 and button2, label2
On Button1 for the OnSelect property I have:
Set(button1pressed, “Button1”)
For Label1 for the Visible property I have:
If(button1pressed = “Button1”, true, false)
On Button2 for the OnSelect property I have:
Set(button2pressed, “Button2”)
For Label2 for the Visible property I have:
If(button2pressed = “Button2”, true, false)
If a user selects button1 then the label1 displays as expected and if the user selects button2 then the label2 displays as expected too.
But what I’m trying to accomplish is when a user clicks on button1 show label1 and if the user then clicks on button2 then show label2 BUT hide label1. Any idea on how to accomplish this?
Any help is appreciated