Draggable Pane in UI Component set 2

Are draggable panes only used to load outside swfs? The reason I ask is because I can’t figure out how to put text into a draggable pane. I tried making a string variable, then putting the string variable’s name in the “Scroll Content” spot in the draggable pane’s properties. It didn’t work; nothing shows up in the pane.

I also looked at the available actionscript commands for the draggable pane, and nothing seemed appropriate.

This is what I did, assuming the draggable pane’s instance name is “dp1_dp”. This AS is on the ACTIONS layer on the first frame of the movie. In the “Scroll Content” spot of the draggable pane, I put in t1_txt.

**var t1_txt:String = “blah, blah, blah”;
**


On another note, I was able to load an outside swf, but the loaded swf didn’t work properly/completely. Is there a limit to what swfs can do that are loaded into a draggable pane? Here’s my AS for that one:

dp1_dp.loadScrollContent(“externalMovieSample.swf”);