Dynamic text - images overlapping text

[font=Arial]Hey guys,

Got a small problem… I’m bringing in dynamic text via remoting which is being read as HTML. This is for the content management system, using same text/html for both HTML and flash sites. Anyways, on the flash side when I view a page that has an image in the HTML the image overlaps the text. I’ve got all the alignment variables (height/width/vspace/hspace) in the img tag and still nothing. Has anyone else had any problems with this? And the weird thing is that when the page looks jacked up because of this, when you click any of the text or the image it rights itself and looks just fine.

Here’s an example of the problem: http://nettest.gcsaustin.com/fl_design.aspx[/font]
[font=Arial]click on the 4th question in the box (backless boxes), the image will overlap the text.[/font]
[font=Arial][/font]
[font=Arial]It seems the text is being loaded, then drawing the image…but not correcting the layout. I’ve tried updateAfterEvent() but no luck…but maybe I wasn’t using it right[/font]
[font=Arial][/font]
[font=Arial]Any suggestions???[/font]

im also using external swf for dynamic text purposes. this is how i have my links set up.

on (release) {
 if (_root.currMovie == undefined) {
  _root.currMovie = "members";
  loadMovie("members.swf", content);
 } else if (_root.currMovie != "members") {
  if (_currentframe>=midframe) {
   _root.currMovie = "members";
   play();
  }
 }
}

what am i doin wrong heres the flash file.
ive spent 1 week workin on this feature for my flash website and have yet to understand, thanks in advanced.

you have to define a width and height with your image
<img src=“image.jpg” width="…" height="…">