How to profile profiles in Flex?

I saw the profile window in Flash Builder, but it shows that the data is only useful for profiling memory. How can we do CPU profiling for applications?

One of my operations with the UI is very intense, and I need to profile to see which function calls take up most of the processor cycles. Currently, I cannot find something like this.

+3
source share
3 answers

Try using the Monster debugger. It is great for debugging and profiling the processor. http://demonsterdebugger.com/ I use it all the time for swfs and air applications.

+1
source

. , , , , . Flex, , , fdb.

0

From what I know, this is impossible to learn due to the abstraction between actionscript and Flash Player. It would be best to test the function a few hundred thousand times and look at the OS processor monitor to see how much processor it uses.

Honestly, I never do this because I prefer to iterate over my code and find bottlenecks and improve them. Anyway, I'm testing the block and checking the time it takes, then try to optimize it.

0
source

All Articles