I assume that this warning means that the requestAnimationFrame() callback (which is used by OpenFL to render each frame and call Event.ENTER_FRAME listeners) is taking a significantly long time to finish. With this in mind, the fix is to optimize your project’s performance so that frame updates don’t take quite so long.
Thanks @joshtynjala for explanation, can you suggest how would I diagnose and profile so that I find where the exact slowness at my openFL project? is there any recommended approach/profiling library as we use haxe?
Reduce the size of your assets and optimize parent child hierarchy is the best thing to do here. You probably have some bitmap that is oversized. Also, you want to decrease the number of your logs. Logs are essentially really slow and if you have some going in the loop removing them would be a good starting point.