Hi
How can i play a sound and/or change another object's properties when "clicking" on a button/image (for example change the backcolor of a textbox when clicking a button)?
thank you!
Solved! Go to Solution.
Hi dantept,
One option to do that is to bind the property you want to change to a context variable that will be changed when the button is clicked. For example, if you want to change the background color of textbox, you'd set the Fill property to that variable:
TextBox1.Fill: myColor
And then on the OnSelect property of the button, you'd update the value. In the example below, the color is toggled between red and blue every time the button is pressed.
Button1.OnSelect: UpdateContext({ myColor: If(myColor = Color.Red, Color.Blue, Color.Red) })
You can also have an initial value for that variable, which would be normally set on the OnVisible property of the screen where the textbox and button are located:
Screen1.OnVisible: UpdateContext({ myColor: Color.Red })
Hi dantept,
One option to do that is to bind the property you want to change to a context variable that will be changed when the button is clicked. For example, if you want to change the background color of textbox, you'd set the Fill property to that variable:
TextBox1.Fill: myColor
And then on the OnSelect property of the button, you'd update the value. In the example below, the color is toggled between red and blue every time the button is pressed.
Button1.OnSelect: UpdateContext({ myColor: If(myColor = Color.Red, Color.Blue, Color.Red) })
You can also have an initial value for that variable, which would be normally set on the OnVisible property of the screen where the textbox and button are located:
Screen1.OnVisible: UpdateContext({ myColor: Color.Red })
Obrigado Carlos!
Hi,
Thanks for your reply, it enlightes me.
What if I would try to set only the object selected inside of a vertical gallery?
Thank you
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
277 | |
234 | |
82 | |
38 | |
37 |
User | Count |
---|---|
352 | |
240 | |
126 | |
72 | |
54 |