如何旋转文本(s:label)?我试过使用rotationZ,但不是旋转文本,而是旋转每个字母,产生一些奇怪的效果......如何改变文本角度?
问问题
1843 次
2 回答
0
如果效果:
http://www.eonflex.com/flex/4.1/langref/spark/effects/Rotate.html#includeExamplesSummary
如果属性: http: //docs.huihoo.com/flex/4/spark/components/Label.html#propertySummary寻找旋转
对于样品:
http://flex.gormagon.org/2007/04/12/text-rotation/
http://creative-geeks.com/blog/2009/05/26/rotate-text-using-embedded-fonts/
于 2010-08-29T16:38:14.413 回答
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 回答