Change Label Alpha at Runtime

Dogbonesix

Active Member
Licensed User
Longtime User
I can change the Label Alpha in design mode - it is a piece of cake. It there a way to change it at RunTime?
 

MLDev

Active Member
Licensed User
Longtime User
You can change the alpha and color with this:

B4X:
myLabel.Color = Colors.ARGB(alphaValue, redValue, greenValue, blueValue)
 
Top