all groups > flash actionscript > november 2006 >
You're in the

flash actionscript

group:

clicks per minute counter


clicks per minute counter rossisbudda
11/4/2006 4:02:15 PM
flash actionscript:
hi
i am trying to create a script that will count and display how many mouse clicks per minute have ocurred. does anyone smart enough know how i mihgt go about doing this?
Re: clicks per minute counter kglad
11/4/2006 4:13:41 PM
if you want a running average:



startTime=getTimer();
this.mouseDownNum=0;
this.onMouseDown=function(){
this.mouseDownNum++;
mouseClicksPerMinute=this.mouseDownNum*60000/(getTimer()-startTime);
}
AddThis Social Bookmark Button