Scrolling text

hello.

please help me.

i want to scroll a text. the problem is when i define text inside flash, it my code works great, but when i import it from external source, it doesn’t.
here is the code:

stop();

// sirina texta ti je onda
sirina_ = txt_prvi.textHeight;
duplicateMovieClip(“txt_prvi”, “txt_drugi”, this.getNextHighestDepth());
// postavis drugi text pored prvog i pomeris za jedno 5 px
txt_drugi._y = txt_prvi.y + sirina + 50;
txt_drugi._x = txt_prvi._x;
// skrolujes na onEnterFrame
onEnterFrame = function() {
txt_prvi._y -= 5;
txt_drugi._y -= 5; // skrolujes za 3 px ili vec kolko zelis
if ((txt_prvi.y + sirina) < 0) { // ako je tekst ispao iz neke granice na primer 0
txt_prvi._y = txt_drugi._y-3; //
txt_drugi._y = txt_prvi.y + sirina + 400;
}
}

THANK YOU VERY MUCH