I'm looking for a Flex container that behaves similar to WPF's WrapPanel. http://msdn2.microsoft.com/en-us/library/system.windows.controls.wrappanel.aspx
"Positions child elements in sequential position from left to right, breaking content to the next line at the edge of the containing box. Subsequent ordering happens sequentially from top to bottom or from right to left, depending on the value of the Orientation property." The closest I can find is Tile, which would work if it determined its number of rows and columns based on the size of its children and its parent, rather than always trying to make a square. Has anyone implemented something like this? thanks, -josh

