I'm using this code for a text area:

//load in XML
kungFuContent = new XML();
kungFuContent.ignoreWhite = true;
kungFuContent.load("kungfu.xml");
kungFuContent.onLoad = function(success)
{
if(success)
{
myText.text = kungFuContent;
}
}


This loads fungfu.xml into the text area (myText) fine and uses a stylesheet.

But I wish to have images in the text area as well(amoungest the text). I
tried using html img tags but it didn't work.

Please help as i need this for a project that is due very soon.

Thx