# Using LoadMovie and dynamic text

**URL:** https://forum.kirupa.com/t/using-loadmovie-and-dynamic-text/7020
**Category:** Uncategorized
**Created:** [October 22, 2002, 8:59am UTC](https://forum.kirupa.com/t/using-loadmovie-and-dynamic-text/7020 "2002-10-22T08:59:32Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![andersom](https://avatars.discourse-cdn.com/v4/letter/a/43a26b/32.png) [@andersom](https://forum.kirupa.com/u/andersom)
#### Post date: [October 22, 2002, 8:59am UTC](https://forum.kirupa.com/t/using-loadmovie-and-dynamic-text/7020/1 "2002-10-22T08:59:32Z")

</div>

I made a dynammic scrolled text box and this works fine, now my problem  
I made this text box for my news section (news.swf) which i load in my main movie (main.swf) with LoadMovie.  
The news.swf itself works fine but, if i put it online it doesn’t work…☹

Can anyone help me out??🙂

here’s the action for the dynamic scrolled text box…

loadText = new loadVars();  
loadText.load(“links.txt”);  
// creating the loadVarsText function  
loadText.onLoad = function() {  
scroller.text = this.links;  
scroller.html = true;  
scroller.htmlText = this.links;  
};

Thanx in advance…

Andreas:goatee:

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [October 22, 2002, 8:12pm UTC](https://forum.kirupa.com/t/using-loadmovie-and-dynamic-text/7020/2 "2002-10-22T20:12:46Z")

</div>

did you try checking your levels for your movie

when you do the LoadMovie command your script should look something like:

loadMovie(news.swf,0);

the number after the comma is the level at which your movie will be loaded … its been my experience that if the level is too low of a movie, you won’t get to see parts of it or buttons won’t work or whatever … so just try changing that number to a 1 or some other higher number.

hope this helps

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [October 23, 2002, 9:04am UTC](https://forum.kirupa.com/t/using-loadmovie-and-dynamic-text/7020/3 "2002-10-23T09:04:00Z")

</div>

Thanks for that , but no it didn’t work it was on level 4 already…  
So i it has to do something with the script of the news.swf…

Andreas
