Can someone help me?

Hello again :smiley: I am now making a update site for my flash site, and it has to be able to load a text into a text field, which I have already managed to do with this code placed in the first frame :

myData = new LoadVars();
myData.onLoad = function() {
Meny.text = this.Meny;
};
myData.load(“Meny.txt”);

When the text is loaded, and changed to whatever I want to change it to, I need a button that takes the new , changed text and puts it in the textfile, so it can be loaded into the website…

I have understood that it is a code that lookes something like this :

on(release){
var my_lv:LoadVars = new LoadVars();
Meny = Meny.text;
Meny.send(“Meny.txt”, “_blank”, “POST”);
}

Hope this can teach alot of people how to update flash sites in an easy way :smiley: