GUI alpha for specific labels

Hi, I have a gui style which I am using for my labels. I would like to have it so that I can pull up multiple labels at different times and animate their alphas at the beginning of the animation. (so that each label would fade in) however, The only solution I’ve found is to change the alpha of the entire style or gui at once. is there a way to change the alpha of separate elements of the same time while they both show on screen simultaneously? unfortunately, I can’t provide my code yet as I’m trying to work this out before I can begin.

You can change your GUI.skin mid-ongui:

function OnGUI(){
//gui code whose skin is the default one
GUI.skin=skin1;
//gui code whose skin is skin1
GUI.skin=skin2;
//gui code whose skin is skin2
GUI.skin=null;
gui code whose skin is again the default one.
}

Alternatively, you can modify the alphas in the same way:

//gui code here
GUI.color = new Color(1.0f, 1.0f, 1.0f, 0.1f);
//gui code that will produce almost transparent elements here
GUI.color = new Color(1.0f, 1.0f, 1.0f, 1.0f);
//Fully opaque gui elements here