Hello, this is pretty noob of me. I want to access the 'tint color' of a widget, which is from my understanding is the 'color' property. I'm trying to change the alpha of my widget, (just like you do when you mess with the 'A" slider when you click on tint color).
I tried both myWidget.alpha = myFloatValue; and myWidget.color.a = myFloatValue; - The first had no effect, the second didn't compile.
Do I have to make a new color, copy the rgb values from the old color and apply the new alpha? - Isn't this how the alpha property is being set anyway? - Thanks.