vote up 4 vote down star
1

Hi!

Is there any way to detect memory leaks in Flash ActionScript-3 project? what are the easier ways to achieve this in existing project ?

flag

33% accept rate

2 Answers

vote up 3 vote down check

First is to establish if you actually have a memory leak. For that, I would recommend using a performance stat tool that gives you real-time feedback on your memory usage.

One of the best ones that I've used is Mr. Doob's Stats tool:

Screenshot

Just add it to the stage with

addChild( new Stats() );

And you'll be able to watch your memory usage in real-time. Perform different actions to see what is causing the memory leak (is it just when you click on these buttons, or every frame, etc etc).

link|flag
vote up 2 vote down

The suggestion for Mr. Doob's Stats tool is a good one. Additionally if you are developing using flex builder professional you can use the built-in profiler. (your project does not have to be an actual flex project, you can develop pure as3 projects as well and still use the profiler)

link|flag

Your Answer

Get an OpenID
or

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