CPU Speed Test in Flash

i’m looking at making an efficient way to test lag in the user’s computer

  1. i’ll post lagTester.swf that will test your CPU
  2. please post the results of the test plus the specs on your CPU
  3. since this is also a source/experiments forum, we trade: my source for your experiment
i = 0;
countNum = 100000;
startTime = getTimer()/1000;
while (!lagTime) {
	i++;
	if (i == countNum) {
		stopTime = getTimer()/1000;
		lagTime = stopTime-startTime;
	}
}
this.createTextField("time_txt",this.getNextHighestDepth(),0,0,500,50);
time_txt.text = "startTime="+startTime;
time_txt.text += "	stopTime="+stopTime;
time_txt.text += "	lagTime="+lagTime;