Flash Kerning

Out of context: Reply #23

  • Started
  • Last post
  • 31 Responses
  • PonyBoy0

    that got a little screwy w/my notes.

    Create a textfield on your timeline named: myText_txt
    Make it dynamic and be sure to embed the fonts using the Properties panel...

    ... add this actionscript:

    var l_Spacing:Object = new Object();
    l_Spacing.letterSpacing = "0";
    var myCSS:TextField.StyleSheet = new TextField.StyleSheet();
    myCSS.setStyle("format",l_Spacin...

    var myText_var:String = "<format>"+This is my content text that sits between two tags+"</format>";

    myText_txt.html = true;
    myText_txt.htmlText = myCSS;
    myText_txt.htmlText = myText_var;

View thread