hi there, I've got a line of dynamic text which I want to use as a counter....

Very simply, I have a button, and all I want is to use the dynamic text, which is initially set to '0', to count each time the button is clicked....

I can do this in AS2 which was something like:
Code:
on(release){
counter.text = counter+1;
}
but I'm still trying to get my head around the math side of as3

Thanks in advance for any help

Rob