I'm adding dynamically labels to hbox, and i need to remove all spaces between the text of 2 nearby labels
i did horizontalGap = 0 for Hbox padding left and right = 0 for labels
anything else i could do ?
or maybe some other component ?
here is the code
<mx:HBox horizontalGap="0">
<mx:Label text="wo" paddingLeft="0" paddingRight="0"/>
<mx:Label text="rd" paddingLeft="0" paddingRight="0"/>
</mx:HBox>