nebkat
nebkat

Reputation: 8565

AS2 Dynamic MovieClip Selection

If I have movieclips called "test1", "test2" and "test3" in the _root, I can use:

for(i = 1; i <= 3; i++){
   _root['test'+i]._x = 100;
}

How do i use the "_root['mc']" selection method if all my test mc's are in another mc called layout.

I have tried this but got a syntax error.

for(i = 1; i <= 3; i++){
   layout.['test'+i]._x = 100;
}    

Upvotes: 0

Views: 1178

Answers (1)

Chris Gutierrez
Chris Gutierrez

Reputation: 4755

I think you are getting the syntax error because you have layout.['test'+i] instead of layout['test'+i]

Upvotes: 1

Related Questions