hi.
Does anyone know how to make this:
format = new TextFormat();
format.bold = true;
tfield.setTextFormat(format);
into something like this:
var col = new Color(this.background);
col.setRGB(0xf4faff);
I’m no AS expert but i think the first example changes the font from outside of the object and the second example from inside the text object.
What i really need to know is how to make the “this.background” in the second example into “this.whatever points to the font”
Anyone understand what i’m trying to do and know how to do it, i appreciate all help.