I am trying to replace the color of all buttons called 'myButtons' using this code:
colorTransform.color = 0xaf4b44;
myButtons.transform.colorTransform = colorTransform;
but only the most recently created button is changing color, and not all of them. They are all called myButtons. Is there another way to do this?
If all the buttons have the same parent you can use the following code. I would advise you to use different name for each button though.