Dogbonesix Active Member Licensed User Longtime User Jan 6, 2013 #1 I can change the Label Alpha in design mode - it is a piece of cake. It there a way to change it at RunTime?
I can change the Label Alpha in design mode - it is a piece of cake. It there a way to change it at RunTime?
M MLDev Active Member Licensed User Longtime User Jan 6, 2013 #2 You can change the alpha and color with this: B4X: myLabel.Color = Colors.ARGB(alphaValue, redValue, greenValue, blueValue)
You can change the alpha and color with this: B4X: myLabel.Color = Colors.ARGB(alphaValue, redValue, greenValue, blueValue)
Dogbonesix Active Member Licensed User Longtime User Jan 8, 2013 #3 Cool Thanks, I did not see the A part...