Need help with load textfile

Hello…there…

ok I just make a simple system login that the username & password loaded from textfile then I store in array…but the problem is when I doing tracing nothing was trace…?..kind of confused…

thisis the code I’m using for the flash


lv = new LoadVars();
myArray = [];
lv.onload = function() {
	
	myArray[0] = this.Admin0.split("|");
	//trace(myArray[0]);
	myArray[1] = this.Admin1.split("|");
	myArray[2] = this.Admin2.split("|");
	
}
lv.load("login.txt");

and this is my content for the tetxfile


Admin0=id1%7C123456&Admin1=id2%7C123456&Admin2=id3%7C123456

Is it my way are totally wrong…!!!

tq…