Change Color for Multiple Flash Items

Flash Add comments

Change colors for multiple items in your flash file, textField, movieClips, whatever.

//change color for multiple items
var newColor:Number = 0xDAE2EE;
mcChange = [mc_1, mc_2, mc_3, mc_4, mc_5];//or add text field textField
for (i=0; i<mcChange.length; i++) {
var mainColor:Color = new Color(mcChange[i]);
mainColor.setRGB(newColor);
}

Leave a Reply

visit my other website here >> noeone
Entries RSS Comments RSS Log in