Using LoadMovie and dynamic text

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…:frowning:

Can anyone help me out??:slight_smile:

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:

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

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