_global.php_file = "http://localhost/InsFornitori.php";
Stage.scaleMode = 'noscale';

Inserimento.onRelease = function() {
var regVars = new LoadVars();
regVars.action = "register";
regVars.nomefornitore = NomeFornitore.text;
regVars.indirizzo = Indirizzo.text;

regVars.onLoad = function() {
if (this.error != undefined) {
errorMsg.text = this.error;
} else {
errorMsg.text = "OK";
trace("OK");
}
};
regVars.sendAndLoad(php_file, regVars, 'post');


};


io la proverei così

Ciao