Add 10 with every click

Each time I click the “fold_btn” I need to be able to add 10 points and display it in a text box (rot1_txt) .

 
on (press) {
_root.rot1_txt = 0;
_root.rot1_txt = _root.rot1_txt + 10;
}

Not working!!