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?
|
3
|
|
|
|
|
|
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. |
|||
|
|
|
|
for simple memory tracking, use you could also use Flex Builder's internal profiler ... |
||
|
|
|
This blog, and the comments, are very helpful for understanding flash memory usage. |
||
|
|
|
|
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. |
||
|
|
|
|
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:
It's light-weight, and performs well. Compatible with Actionscript3, Javascript, and haXe. |
||
|
|


