Is there a good place that has an overview of how Flex layout stuff is managed?
I'm trying to create some user-resizeable "windows" in Flex, but I'm having some trouble getting the layout calculations for the contents correct.
Right now I'm just trying to get a good understanding of how Flex calculates its layouts, but I haven't found any good overview documentation.
For instance, looking just at the width
value there are the following:
minWidth
maxWidth
width
explicitMinWidth
explicitMaxWidth
explicitWidth
measuredMinWidth
measuredMaxWidth
measuredWidth
and the same set for height
.
What's the meaning of each of these? How is each used? Is there any way using those to calculate some preferred size of a component (like getPreferredSize()
in java)?
Answers to that specific width/height question would be very helpful, but if anyone knows of some good documentation that goes over Flex's layout stuff in general that would be great.