多くのコンテンツがあり、垂直スクロールが必要なため、View 内に Spark Scroller があります。現在、dataProvider からデータを取得するラベルがいくつかありますが、文字列が長い場合があります。ラベルを複数行にしたいのですが、現在すべてが x と y の両方のスクロールを行う Scroller にあるため、ラベルは maxDisplayedLines プロパティを使用せず、ビューポート全体を必要なサイズに引き伸ばします。
<s:Scroller left="10" right="10" top="10" bottom="0">
<s:Group>
<s:VGroup>
<s:HGroup>
<s:Label text="Name: "/>
<s:Label text="{data.name}"/>
</s:HGroup>
<s:HGroup>
<s:Label text="Description: "/>
<s:Label text="{data.description}" maxDisplayedLines="-1"/> // This pushes everything out, I want it to not expand the content horizontally beyond the width
</s:HGroup>
...
</s:VGroup>
</s:Group>
</s:Scroller>
どんな助けでも大歓迎です。ありがとう。