PDA

View Full Version : Computer Speed Test



cr125rider
May 31st, 2004, 12:18 AM
Kind of a peculiar question:

How might someone detect if an end users computer is slow? I tried a search but got anything and anything but a good answer. Are there built in FPS functions?

Thanks,

GreenLantern
May 31st, 2004, 12:21 AM
Are you talking like CPU speed? I've never heard of anything like this.

ps. Your footer rocks.

cr125rider
May 31st, 2004, 12:23 AM
Thanks, yeah CPU speed, I saw something a while back on www.flashkit.com that had something like it on it. It had a small bar in the corner displaying the CPU speed. I tried a search there but got strange results also.

Jpao
May 31st, 2004, 11:14 PM
I have seen FPS counters on projects before, so it is possible... But i dont know how to do it though.

Yeldarb
May 31st, 2004, 11:47 PM
Getting FPS is fairly easy, but it won't tell you a user's CPU speed.

I'm not sure of the exact way to get FPS, but I know that it has to do with getTimer and the current frame and the framerate.

signifer123
June 1st, 2004, 08:33 AM
according to yeldarb i think you need a timer it checks what frame your on the n the timer does one csecond laater check what frame your on and the difference is you framerate i don't know how to program it though.

cr125rider
June 1st, 2004, 07:37 PM
Is there a get FPS function?

Marz
June 1st, 2004, 09:45 PM
No, there isn't.

You have to build your own function.

jerez_z
July 20th, 2004, 11:51 AM
I built an FPS movieclip... its actually pretty simple when you think about it:



onClipEvent(load) {
starttime = new Date().getSeconds();
}
onClipEvent(enterFrame) {
framecount++;
thistime = new Date().getSeconds();
if(starttime != thistime) {
starttime = thistime;
rate_txt.text = framecount;
framecount = 0;
}
}
//rate_txt is a text field in the movie clip to display the FPS

speed
July 23rd, 2004, 10:32 PM
go to this site
http://www.pcpitstop.com/ they test your whole pc.




------------------------------------------------------------------------
http://speed.vbsimplified.com

Behemoth-Dan
July 26th, 2004, 03:17 AM
http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary122.html

Try using that code.

ratbaggy
July 26th, 2004, 03:24 AM
camera!!! can someone explain more?

devinstar
October 18th, 2004, 10:24 AM
http://www.flashkit.com/tutorials/Utilities/A_Flash_-Knoj-527/index.php

Tutorial on how to test Speed of computer