Load text in XML menu

Hello!! I used Senocular’s great tutorial to create an XML driven drop-down menu.
I manage to load swf’s and jpg’s through that XML into my flash pretty good!!
But now i also need after pressing a menu button, to load some external text, so i can load both an image an a external text file.
this chunk of code is what i use in flash to load the image:
Actions = Object();
Actions.loadmovie = function(urlVar) {
loadMovie(urlVar, “container”);
};
and this is the code from the XML:
<item name=“Lolog” action=“loadmovie”
variables=“myimage.jpg”/>

What code should i put, both in flash and in the XML to load text into the dinamic text box i have in my movie?

thanks a million, guys!!