Can I load an image into a dynamic text field?

I’m loading a bunch of external data into various dynamic text boxes and I also need to load an image from an external location. Is it posible to do this using a textbox or do I have to try another method? I’d like to load in the image from an URL.

So as you can see I’m atatching a movieclip that has all of the textboxes inside and then loading in the desired text.

on (rollOver) {	
 	//_root.home.rollover2.gotoAndPlay("over");
	 _root.information.gotoAndStop("off");
	 _root.rollover2.gotoAndPlay("over");
	
	this.attachMovie("buildingdetails_mc", "buildingdetails", this.getNextHighestDepth());
	 buildingdetails._x = 536;
	 buildingdetails._y = 26;
 	 buildingdetails.bldgName_txt.text = "Blackbear Lodge";
	 buildingdetails.bldgUnits_txt.text = "54 units";
	 buildingdetails.bldgLevels_txt.text = "4 levels";
	 buildingdetails.bldgFootage_txt.text = "620 - 1200 sq ft.";
	 buildingdetails.bldgPrice_txt.text = "$250 - $640k";
	 buildingdetails.bldgStatus_txt.text = "now taking reservations";