This function call should be easy

Hey All,

I’ve got several mc’s that I want to have scaled down. I created a little function and have one of my mc’s call it. But it’s not doing anything. What am I doing wrong? I want the mc’s to scale down by 50%.

Thanks.

[color=blue]function movieDownsize(movie) {
movie._xscale = 50;
movie._yscale = 50;
}[/color]

[color=blue]this.auto1_mc = function () {
movieDownsize(this.auto1_mc);
}[/color]