Flash AS question about loadvariables?

Hello, I'm trying something , if someone know whats the problem please help me. Here is my codes;
_root.loadVariables("results.txt");
var f1:String;
trace(f1)

results.txt is like that
&f1=blabla


This trace gives me UNDEFINED
How can i fix it ?

2009-06-25T14:11:55Z

I already did that but still same

sailedthemoon2009-06-25T14:05:20Z

Favorite Answer

you are defining f1 AFTER already loading it, so you end up redefining it. move the line:

var f1:String

to BEFORE loadvariables