views:

62

answers:

3

Hi,

I have a flash application which consist of Grid Components, Button, Label, and Combo-box Components. All these components are used more than 70 times(simultaneously) with in the application. So Its takes too much of memory. So How can I test the memory usage of each component at the time of running. Is there any plug-in available for browsers to find the memory usage.

I'm using flash CS3 and ActionScript 3.0. The application suppose to run in browsers.

+1  A: 

If you're using Abobe Flash Builder, you can use its built in profiler.

Gunslinger47
@Gunslinger47. +1. That's the best tool available for profiling memory (at least, the best I'm aware of). For profiling performance, though, it's not so great, in my experience.
Juan Pablo Califano
+1  A: 

I think MonsterDebugger will help you. Besides memory and FPS monitor, it has lots of other useful features.

You can also try FlashPreloadProfiler to monitor memory and DisplayObjects lifecycle.

Vladimir Grigorov
+1  A: 

To automate the flash testing itself, try iMacros or AHK. The advantage of iMacros is that you can run many instances at once. The advantage of AHK is that it is free ;)

For monitoring the IE memory use see http://stackoverflow.com/questions/580712/what-do-you-use-to-monitor-jscript-memory-usage-in-internet-explorer

Ruby8848