Skip to content

Instantly share code, notes, and snippets.

@mizutanikirin
Created June 10, 2014 12:03
Show Gist options
  • Save mizutanikirin/c6c59cf74a34993376cc to your computer and use it in GitHub Desktop.
Save mizutanikirin/c6c59cf74a34993376cc to your computer and use it in GitHub Desktop.
Font埋め込み
// (1) ライブラリに埋め込み時にリンゲージ設定する必要あり
var textformat:TextFormat = new TextFormat();
//textformat.font="小塚ゴシック Pro B";
textformat.font = new font1().fontName;
textformat.size=20;
var tf:TextField = new TextField();
tf,mouseEnabled = false;
tf.defaultTextFormat=textformat;
tf.autoSize= "left";
tf.htmlText="BACK";
tf.embedFonts=true;
addChild(tf);
tf.alpha = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment