este codigo va dentro del action
Código PHP:
var clics:Number = 0;
var txt = new LoadVars();
banner.onRelease = function():Void{
clics++;
txt.load("contador.txt");
};
txt.onLoad = function():Void{
this.new_clics = clics;
this.send("edit_contador.php", this, "POST");
}