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
Power Apps User Groups are coming! Make sure you’re among the first to know when user groups go live for public preview.
Did you miss the call?? Check out the Power Apps Community Call here!
User | Count |
---|---|
255 | |
205 | |
76 | |
37 | |
31 |
User | Count |
---|---|
334 | |
214 | |
119 | |
71 | |
55 |