Help : Strange refreshing situation (Losing my text from flash)

Hi and päivää to everyone from Finland. I am new. Yes. Yes. Carry on…

I am new with this Flash MX and action scripting. Just before xmass my teacher asked me and others to make a Flash movie which uses everything that he has teached to us on past three weeks. Well. That is easy - but did I keep it simple enough? No way… I had to put my fingers to the deepest abyss immediatly and tried to use Active scripting on my first movie. Stupid me - now I am stuck.

My problem is that my Flash movie keeps refreshing and everytime when it happend it loses my dynamic text from the textbox.

I mean – On the beginning I load a file to the Dynamic text area and it works fine for a while. After - I dont know - 15 seconds the movie refreshes and the text is gone. However movie clip inside that flash movie still goes on. I have tried to run the movie without that movie clip and same thing happend.

My text is loaded like this: (actually, this is the beginning of my movie.)

if (!alussa) { // Alussa oli vain variaabelit, tyhjat mc:t ja projektori.
fle_teksti = new LoadVars(); // Leipätekstin variable… Mitä hittoa toi Loadvars on.
_root.createEmptyMovieClip(“projektori”, 1);
projektori._x = 15 ;
projektori._y = 121 ;
alussa = true;
haedata();
}

function haedata(alue) {
if (!alue) {
alue = “kotelo”;
}
fle_teksti.load(“tekstit/” + alue + “.uxt”);
fle_teksti.onLoad = function(success) {
if (success) {
teksti.html = true;
teksti.htmlText = this.leipateksti;
}
}
//loadMovie(alue + “.swf”, “projektori”);
}

If that doesn’t help you to help me, then look over here :
http://www.carrata.net/flash

Any help? Any Ideas?