
Announcements
In my canvas app I have buttons to indicate screens in my app... when the user selects a button I want the color of that button to change.. this will indicate which screen the user is at now.. How can I do this?
Hi @S2_0452,
On the Fill property of your button, you can use this formula:
If(App.ActiveScreen = 'Screen name', RGBA(255, 0, 0, 1), RGBA(0, 255, 0, 1))
Note: The 'screen name' should be the screen to which the button will navigate too.
Please tick Accept as solution if the answer is useful.
Thanks,