I'm having a ton of trouble accessing an externally loaded movie's dynamic textbox to try and change its content from a parent movieclip.
Here's the code from the parent movie movie.
clipOuterContainer.createEmptyMovieClip("clipInnerContainer",0);
clipOuterContainer.clipInnerContainer.loadMovie("childMovie.swf",0);
//following is the line that tries to reference and change
//the content of a dynamic text box called "loadedInfo",
//which is inside of childMovie.swf.
//
//THIS IS THE LINE THAT DOES NOT WORK!!!
clipOuterContainer.clipInnerContainer.loadedInfo.htmlText = "SKW";
Why won't appending ".loadedInfo.htmlText" onto the end of the loader movieclip (clipInnerContainer) let me access the dynamic text box within the external movie?
I've been struggling with this for close to 9 hours. I've GOT to be able to move forward. Can someone please help?
Thanks,
Steve
Here's the code from the parent movie movie.
clipOuterContainer.createEmptyMovieClip("clipInnerContainer",0);
clipOuterContainer.clipInnerContainer.loadMovie("childMovie.swf",0);
//following is the line that tries to reference and change
//the content of a dynamic text box called "loadedInfo",
//which is inside of childMovie.swf.
//
//THIS IS THE LINE THAT DOES NOT WORK!!!
clipOuterContainer.clipInnerContainer.loadedInfo.htmlText = "SKW";
Why won't appending ".loadedInfo.htmlText" onto the end of the loader movieclip (clipInnerContainer) let me access the dynamic text box within the external movie?
I've been struggling with this for close to 9 hours. I've GOT to be able to move forward. Can someone please help?
Thanks,
Steve