# Dynamic Text in a movie clip

**URL:** https://forum.kirupa.com/t/dynamic-text-in-a-movie-clip/52703
**Category:** Uncategorized
**Created:** [May 26, 2004, 3:55pm UTC](https://forum.kirupa.com/t/dynamic-text-in-a-movie-clip/52703 "2004-05-26T15:55:18Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![stermer](https://avatars.discourse-cdn.com/v4/letter/s/edb3f5/32.png) [@stermer](https://forum.kirupa.com/u/stermer)
#### Post date: [May 26, 2004, 3:55pm UTC](https://forum.kirupa.com/t/dynamic-text-in-a-movie-clip/52703/1 "2004-05-26T15:55:18Z")

</div>

so i have a this movie clip, inside the movie clip i am dynamically loading images into little movie clips and i wanna dynamically load text into text fields in the clip as well. currently i am using this code to load the text into the fields, but it’s not working.

loadText = new LoadVars();  
loadText.load("…/images/news.txt");  
loadText.onLoad = function() {  
myNews.html = true;  
myNews.htmlText = \_root.one.city1;  
};

it is cause i can’t trace a path to a text field like i can a movie clip?
