I have a variable which defines a "colour scheme" from my App, based on Slider Values selected by the User:
Set(varFillColour,RGBA(Slider2.Value,Slider2_1.Value,Slider2_2.Value,(Slider2_6.Value/100)))
These Values are stored in a DataVerse Table and read every time the User opens the App. It works for both the Fill and Color Properties of various Objects on a Screen. However, in some instances, I need to change the Alpha Value from within that defining RGBA Variable - but only for the individual Object where it is in use. I am trying to "fade out" some Objects, based on the colour scheme selected by the User.
Is there a way to extract or "read" the details of my varFillColour variable - and then to change one Value only (in my case the element which defines the Alpha Value in an RGBA definition) for a single Object - without that change affecting the Global implications of the Variable?
Thanks!