Hi.
I started using unity 4.6 new UI.
I’ve a code where I change a UI.Image transparency with this line:
image.color = new Color(255,255,255,100);
But this doesn’t work.
After a few test I found that changing the color do work except for the alpha value.
If alpha = 0 then the image is invisible but anything higher than 0 make the image fully opaque.
Changing the alpha value manually in the inspector do make the image transparent.