Hey guys, is there some kind of actionscript to show how many times a button in a flash movie has been clicked?
No. But you could just use a variable to count how many times its been clicked:
[AS]var clickNumber=0;
mybutton.onPress=function(){
clickNumber++;
}[/AS]