0

我有一个具有抗锯齿类型“使用设备字体”的动态文本字段。当我旋转文本字段时,文本消失并在文本字段旋转到 360 度时重新出现。请建议我实现这一点的方法。提前致谢。

4

1 回答 1

0

从 Flash Player 10 开始,您可以DisplayObjects'通过调整它们的rotationZ属性来旋转。你也可以用你的TextField. 除此之外,您还可以使用TextBlock该类来相应地解析TextLines和旋转它们。

有关更多信息,请查看此博文:

http://www.yswfblog.com/blog/2009/05/21/the-knack-to-rotating-dynamic-text-in-flash-10/

这是来自同一篇博文的代码:

package 
{
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFormat;
    import flash.text.engine.*;

    public class TextTest extends Sprite 
    {
        public function TextTest () 
        {
            for (var i:int = 0; i <= 20; i++) 
            {
                var txt:TextField = new TextField();
                txt.selectable = false;
                txt.width = 300;
                txt.height = 100;
                txt.text = "Hello world!";
                txt.setTextFormat(new TextFormat("Georgia", 2 + 2*i));

                txt.x = 6*(i*(i+1)/2);
                txt.y = 30;
                txt.rotationZ = 20;
                addChild(txt);
            }

            for (var j:int=0; j<=20; j++) 
            {
                trace(j);
                var myString:String = "Hello world!";
                var myFormat:ElementFormat = new ElementFormat();

                var myFontDesc:FontDescription = new FontDescription("Georgia");
                myFormat.fontSize = 2 + 2*j;
                myFormat.fontDescription = myFontDesc; 

                var textElement:TextElement = new TextElement(myString, myFormat);
                var textBlock:TextBlock = new TextBlock();
                textBlock.content = textElement; 

                var myTextLine:TextLine = textBlock.createTextLine(null, 300); 

                myTextLine.x = 6*(j*(j+1)/2);
                myTextLine.y = 150;
                myTextLine.rotation = 20;

                addChild(myTextLine);
            }
        }
    }
}
于 2012-08-14T15:06:51.880 回答