Return to Snippet

Revision: 9745
at November 19, 2008 20:35 by Winkyboy


Initial Code
function kernText(whichField, kerning)
{
    whichField.html = true;
   
    var newFormat:TextFormat = new TextFormat();
    newFormat.letterSpacing = kerning;
    //newFormat.font = "Arial";
   
    whichField.setTextFormat(newFormat);
}

Initial URL
http://winkyboy.blogspot.com/2007/12/programming-flash-kerning-dynamic-text.html

Initial Description


Initial Title
AS2 Kerning dynamic text fields

Initial Tags
actionscript

Initial Language
ActionScript