2

如何旋转文本(s:label)?我试过使用rotationZ,但不是旋转文本,而是旋转每个字母,产生一些奇怪的效果......如何改变文本角度?

4

2 回答 2

0

<s:Label rotation="270" text="Your Text"/>从下往上读

<s:Label rotation="90" text="Your Text"/>从上到下读

如果要垂直对齐,请将其包装在带有垫片的 VGroup 中:

<s:VGroup height="100%">
    <s:Spacer height="50%" />
    <s:Label rotation="270" text="Your Text"/>
    <s:Spacer height="50%" />
</s:VGroup>
于 2013-06-18T22:02:39.100 回答