Hi,
The life link is:
http://www.ikbiedzorg.com wait for the menu and select 'Gastenboek'.
The loadaction is:
NumLow = 0;
NumHigh = 10;
//Make a new loadvars object
myLoadVars_lv = new LoadVars();
//when this load vars object FINISHES LOADING something this function is run
myLoadVars_lv.onLoad = function(success) {
//the success variable is a parameter, it is true or false, if it is true,
//that means the file has loaded properly
if (success) {
//you can call the variable from the text file using the loadvars object
myTextBox2_txt.text = this.variable2;
}
}
//AFTER you define the onLoad event handler, then you tell flash to load the file.
myLoadVars_lv.load("GuestBook.txt");
Cheers