No, fai così:
• togli quel "testo1" dal campo "var" del campo di testo, dal pannello properties
• dal al campo di testo un nome di istanza, ad esempio "testo_txt"
• al tuo movieclip associa:

codice:
onClipEvent (load) {
	dati = new LoadVars();
	dati.path = this;
	dati.onLoad = function(success)
	{
		if(success){
			this.path.nextFrame();
			this.path.testo_txt.text = this.testo1;
		}	
	}
	dati.load("testo1.txt");
}