Hi,

I'm trying to following:

i = 5;
_root."px"+(i-1).canvas._alpha = 50;

So what I want to do is call the movieclip canvas inside movieclip px4 on the root and set it's alpha to 50...

I've tried lots:

_root.eval("px"+(i-1)).canvas._alpha = 50;
but this looks for the variable stored in px4

_root.+("px"+(i-1))+.canvas._alpha = 50;
isn't allowed

_root.("px"+(i-1)).canvas._alpha = 50;
isn't allowed

What is the correct syntax to do this?

Cheers,
Gekke_Hollander