var tf_value:int = 0;
tfF();
your_btn.addEventListener(MouseEvent.CLICK,f); // where your button/sprite has reference your_btn
function f(e:MouseEvent):void{
tf_value++;
tfF();
}
function tfF():void{
your_tf.text=tf_value+"$"; // where your textfield has reference your_tf
}