I've noticed that an "out of the box" HDividedBox has some serious flickering issues when liveDragging is enabled, but only when the pointer is over the contents of the DividedBox while dragging. If you grab the BoxDivider and move the pointer off the component while dragging, the flicker goes away and the component renders properly.
I have tested this with both my customized component and an extremely basic HDividedBox implementation with Group, SkinnableContainer, and BoxContainer children as well as nested groups with clipping. All types of children exhibit the same behavior. If someone has a workaround for this I would greatly appreciate some input!!
Thanks a lot, and here's a code snippet that shows my issue.
<mx:HDividedBox width="500" height="200" liveDragging="true">
<s:SkinnableContainer minWidth="0" backgroundColor="green" percentHeight="100"/>
<s:SkinnableContainer minWidth="0" backgroundColor="blue" percentHeight="100"/>
<s:SkinnableContainer minWidth="0" backgroundColor="yellow" percentHeight="100"/>
<s:SkinnableContainer minWidth="0" backgroundColor="red" percentHeight="100"/>
</mx:HDividedBox>
Thanks,
Aaron