Rotated, Skewed, and Transparent Text Requires Embedded Fonts : rotation « TextField « Flash / Flex / ActionScript






Rotated, Skewed, and Transparent Text Requires Embedded Fonts

 

package{
  import flash.display.Sprite;
  import flash.text.*;
  public class Main extends Sprite{
    public function Main(){
        var t:TextField = new TextField(  );
        t.text = "Hello world";
        t.rotation = 30;  // Rotate text
        addChild(t);
    }
  }
}

        








Related examples in the same category

1.Setting a TextField's Scaling and Rotation