# Need help with load textfile

**URL:** https://forum.kirupa.com/t/need-help-with-load-textfile/164721
**Category:** Uncategorized
**Created:** [October 4, 2005, 9:41am UTC](https://forum.kirupa.com/t/need-help-with-load-textfile/164721 "2005-10-04T09:41:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![pixeldude](https://avatars.discourse-cdn.com/v4/letter/p/57b2e6/32.png) [@pixeldude](https://forum.kirupa.com/u/pixeldude)
#### Post date: [October 4, 2005, 9:41am UTC](https://forum.kirupa.com/t/need-help-with-load-textfile/164721/1 "2005-10-04T09:41:46Z")

</div>

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

```auto

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

```auto

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

```

Is it my way are totally wrong…!!!

tq…
