I’m having a problem combining movies I create dynamically and movies I manually place on the timeline.
I’m creating my dynamic movies like this:
counter = 0
newmc = _root.createEmptyMovieClip(“clip” + counter, counter);
The “counter” variable gets incremented, so I’m creating the movies at higher and higher depths. This MC takes up the full stage.
The problem comes from the fact that my other movie clips are placed manually on the timeline, and are thus covered by the newmc clip created above.
Is there some good way to combine dynamically created MC’s such as the above and MC’s manually placed on the timeline?
Currently I’m setting the depth of the movies I’m placing on the timeline like this, but it seems buggy:
question_mark.swapDepths(900);
Any tips?