Color change, multiple targets

[AS]resetColor = function () {
var my_color:Color = new Color();
my_color.setRGB(0x999999);
subMenu01_btn.Color = my_color;
subMenu02_btn.Color = my_color;
subMenu03_btn.Color = my_color;
};[/AS]

why isn’t this workin?..
just need to change color to 3 mc’s, when i call the function it wont work…but if i write like so it does:

[AS]resetColor = function () {
var my_color:Color = new Color(subMenu01_btn);
my_color.setRGB(0x999999);
};[/AS]

but this way i change only one mc :puzzle:

. am

:yoshi: