Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to enable the "show redraw regions" programmatically? From AS3 code, I mean.

Or is it exclusively a feature of the context menu?

Our current C++ hosting app does not pass through right-clicks and I'd like to avoid changing that code. This is all for testing, doesn't have to be pretty.

share|improve this question

1 Answer

up vote 3 down vote accepted

Yeah, should be able to do it with this line of code:

flash.profiler.showRedrawRegions(true)

Read the official docs for a few more details.

share|improve this answer
sweet. i didn't know this! – grapefrukt Oct 20 '09 at 7:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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