hi. I have an mx:vbox and inside i have several mx:text elements. how do i decrease the gap between each line of text that is shown ? i tried doing the following:
<mx:VBox borderColor="black" borderStyle="inset" width="80%" verticalGap="0" paddingBottom="0" paddingTop="0">
<mx:Text text="a" width="80%" paddingBottom="0" paddingTop="0"/>
<mx:Text text="b" width="80%" paddingBottom="0" paddingTop="0"/>
<mx:Text text="c" width="80%" paddingBottom="0" paddingTop="0"/>
<mx:Text text="d" width="80%" paddingBottom="0" paddingTop="0"/>
</mx:VBox>
and still there is a big gap between each line.