// Get the kookie
var my_so:SharedObject = SharedObject.getLocal("access4funkies");
// Get the user of the kookie and go to the frame number saved for this user.
if (my_so.data.user != undefined) {
this.user = my_so.data.user;
texto_txt.text = this.user;
}
boton_btn.onPress = function() {
my_so.data.user = texto_txt.text;
};
