Can't see text in scrollPane Component

Can anyone help me out on this. I loaded a swf into a scrollpane as scrollpanes go. The only difference is that the dynamically generated textfield in the loaded swf did not come out at all while the pic in the loaded swf did. Is there a way around this?

I’ve posted my code for the scrollpane and also for the swf being loaded:

SWF to be loaded

var a:MovieClip = this.createEmptyMovieClip("loaded", 100); 
loaded.createTextField("mytf", 101, 0, 0, 100, 100); 
loaded.mytf.text = "This text should come out."; //this doesn't come out 
 
//saved the file as test.swf 

Scrollpane

myscrollpane.contentPath = "test.swf"; 

I also ran test.swf (the file itself) to see if the text actually came out which it did. Am I missing anything here?

Here’s test.swf and try loading it in a scrollpane…