button reagerer ikke på script.
var dataOut:LoadVars = new LoadVars();var dataIn:LoadVars = new LoadVars();
// define what should happen when the response is received,
// using 'this' to refer to dataIn and get data from it
dataIn.onLoad = function() {
if (this.valid=="1") {
msg.text = 'virker ';
} else {
msg.text = 'virker ikke';
}
}
// the function that will be called by the Enter button
function update():Void {
dataOut.info = info.text;
dataOut.hylde = hylde.text;
dataOut.sendAndLoad("http://www.123ogabc.dk/opret", dataIn, "POST");
}
// define the behavior of the Enter button
search.addEventListener("click", update);
