开发者

Text rotation Flex

How to rotate text (s:label)? I've tried using rotationZ but instead of rotating text it rotates each 开发者_运维知识库letter with some weird effect... How to change text angle?


if effects:

http://www.eonflex.com/flex/4.1/langref/spark/effects/Rotate.html#includeExamplesSummary

if properties: http://docs.huihoo.com/flex/4/spark/components/Label.html#propertySummary look for rotation

and for samples:

http://flex.gormagon.org/2007/04/12/text-rotation/

http://creative-geeks.com/blog/2009/05/26/rotate-text-using-embedded-fonts/


<s:Label rotation="270" text="Your Text"/> reads down to up

<s:Label rotation="90" text="Your Text"/> reads up to down

If you want to align it vertically, wrap it in a VGroup with spacers:

<s:VGroup height="100%">
    <s:Spacer height="50%" />
    <s:Label rotation="270" text="Your Text"/>
    <s:Spacer height="50%" />
</s:VGroup>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜