I have a nested movie clip instance that I want to access. The path to the movie clip is defined by two variables ( similar to a row and column).
I am already dynamically accessing the parent movie clip like this:
eval("row" + ActiveRow)
Now I want to access one of row(#)'s children called let(#) dynamically.
Here are my best guesses at accomplishing the task (neither one works):
var i:number;
eval("row" + ActiveRow + ".let" + i) or eval("row" + ActiveRow).eval("let" + i)
Thanks a lot for your effort and possible solution..