vote up 3 vote down star
3

Hey. I'm looking to see the memory usage and processor load of an ActionScript 3 project. What applications/methods could I use for that purpose?

flag

5 Answers

vote up 1 vote down check

A really nice drop-in is here:

http://www.lostinactionscript.com/blog/index.php/2008/10/06/as3-swf-profiler/

It gives real-time feedback on memory consumption, Current and Average FPS.

The best thing about it is that it stays out of your way unless you choose to display it using the right-click contextual menu.

I find it indispensable.

link|flag
vote up 1 vote down

for simple memory tracking, use flash.system::System.totalMemory ... for anything else, use the flash.sampler package ... won't help you monitor CPU usage, but you can find out a LOT of things ...

you could also use Flex Builder's internal profiler ...

link|flag
I'm not sure I can use flash.sampler, I have a pure Actionscript project.. I'll try an import and see if it works. – evilpenguin Jul 27 at 9:12
vote up 1 vote down

This blog, and the comments, are very helpful for understanding flash memory usage.

link|flag
vote up 1 vote down

For memory profiling, the profiler that comes with Flex Builder is very useful. Give it a try if you can. It also helps for profiling performance, or the time it takes to execute methods, how many times are they called, etc. I've read many times that performance varies notably between debug and release swfs, and the profiler certainly requires a debuggable swf, but anyway I find it very useful to spot bottlenecks and places were optimization could actually pay off.

link|flag
vote up 0 vote down

I use Mr. Doob's performance stat widget. Add it to the stage, and it gives you real-time information about the performance and memory usage of your app:

Screenshot

It's light-weight, and performs well. Compatible with Actionscript3, Javascript, and haXe.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.