Okay. I have an MC that has three frames, in which each frame has a different MC on the timeline.
When I am on frame one, I can target the child and modify it. However, when I am on frames two or three, I cannot locate the child MC eventhough it exists (numChildren comes back as 1);
Frame 1:
[LIST]
[]MC.currentFrame = 1
[]MC.numChildren = 1
[]MC.getChildAt(0) = [object MoviClip]
[/LIST]
Frame 2:
[LIST]
[]MC.currentFrame = 2
[]MC.numChildren = 1
[]MC.getChildAt(0) = null //(also getChildAt(1), etc.)
[/LIST]
Frame 3:
[LIST]
[]MC.currentFrame = 3
[]MC.numChildren = 1
[*]MC.getChildAt(0) = null //(also getChildAt(1) & 2, etc.)
[/LIST]
How the heck do I target the MC on frames 2 and 3. Note that this occurs if I place them on the same layer or all on seperate frames of the same layer.
Help appreciated! Thanks.