Displaying Dynamic Text in "child" of Parent

Hello again guys,

You have been incrediblly helpful!

I have a dynamic text with the one word in it and a universal time clock component (which is dynamic too). Both of these items show up when I do the test movie. However, when I go to the parent movie, which this movie loads into for some reason these items do not show up.

Is it because I am using this code:

on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “CONTACT1”;
_parent.container1.loadMovie(“CONTACT1.swf”);
} else if (_parent.currMovie != “CONTACT1”) {
if (_parent.container1._currentframe >= _parent.container1.midframe) {
_root.currMovie = “CONTACT1”;
_parent.container1.play();
}
}
}

which is kind of a transitional thing? or something else?

aswg