
When the user clicks that button, I want to display the text as a selected package.
In the picture, there are three packages. when they select one package the message will be visible at choose package.
How can I do that?
if they choose "F3" F3 will be visible,
if they choose "E3" E3 will be visible.
Thanks for your help.
Hello @saranp780 ,
You can store a value in a variable and use it in your label.
In the "OnSelect" of your button, add "Set()" to set the variable to either "F3" or "E3".
Then, in the label's "Text" property, simply put in the variable to display it.
ButtonF3.OnSelect: Set(variable; "F3")
ButtonE3.OnSelect: Set(variable; "E3")
Label.Text: variable
Hope this was helpful to you.