vote up 0 vote down star

I cant quite understand why two vertical label components dont appear right under each other. There seems to be a lot of space between them, is there anyway to get this space removed as setting padding makes no difference at all.

For example, take this layout code:

<mx:VBox>
<mx:Label text="Title" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" />
<mx:Label text="Second bit of text I want to appear right under the first" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" />
</mx:VBox>
flag

60% accept rate

2 Answers

vote up 1 vote down check

You need to set the VBox's verticalGap to 0 or a suitable value.

link|flag
I found "verticalGap" on a VBox component, its much better (setting it to 0) but still not perfect. Also I cant seem to add this property to a programmatically created component: "var contentLinkBox:VBox = new VBox();" – Dan Apr 4 at 20:59
Aha, you set it as a style: contentLinkBox.setStyle("verticalGap", 0); – Dan Apr 4 at 21:03
vote up 0 vote down

Margin = 0?

link|flag
I cant seem to add 'margin' to a text or label component – Dan Apr 4 at 20:52

Your Answer

Get an OpenID
or

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