Kerning Dynamic Text
Kerning Dynamic Text
- Started
- Last post
- 0 Responses
- amadio4
Does anyone know how to kern dynamic text that's loaded externally? I assume it can be done through actionscript. Here's what my code looks like:
this.onEnterFrame = function() {
loadText = new LoadVars();
loadText.load("page_txt/TEXT1.tx...
loadText.onLoad = function(success) {
if (success) {
// trace(success);
txtBox.html = true;
txtBox.htmlText = this.txtBox;}
};
}Looking for suggestions, thanks!