Perdón, te di un código mezcla de as2 y as3
Fijate así:
Código Actionscript:
Ver originalvar n:Number = 0;
function incrementar(n) {
return ++n;
}
miboton.addEventListener (MouseEvent.CLICK, historial);
function historial (event):void {
texto.text = "Este botón fue presionado " + ++n + " veces";
}
Espero no haberme equivocado esta vez
Saludos