# Can I load an image into a dynamic text field?

**URL:** https://forum.kirupa.com/t/can-i-load-an-image-into-a-dynamic-text-field/144072
**Category:** Uncategorized
**Created:** [April 11, 2005, 3:06pm UTC](https://forum.kirupa.com/t/can-i-load-an-image-into-a-dynamic-text-field/144072 "2005-04-11T15:06:13Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Exedus](https://avatars.discourse-cdn.com/v4/letter/e/b19c9b/32.png) [@Exedus](https://forum.kirupa.com/u/Exedus)
#### Post date: [April 11, 2005, 3:06pm UTC](https://forum.kirupa.com/t/can-i-load-an-image-into-a-dynamic-text-field/144072/1 "2005-04-11T15:06:13Z")

</div>

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.

```auto
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"; 

```
