ActionScript 3.0
var format = new TextFormat(); format.size = 14; // 文字のポイントサイズ format.color = 0xFF0000; // 文字の色 txtField.defaultTextFormat = format;
ActionScript 2.0
var format = new TextFormat(); format.size = 14; // 文字のポイントサイズ format.color = 0xFF0000; // 文字の色 txtField.setNewTextFormat(format);