all groups > flash actionscript > september 2005 >
You're in the

flash actionscript

group:

Set Font ??


Set Font ?? Tony Heagren
9/5/2005 1:06:28 PM
flash actionscript:
Hi All,

anyone know what I need to add to this to set the font (Verdana 10 point) ?

--------------------

on (release) {

this.createTextField("story", 10, 96.2, -79.2, 589, 297);

story.border = true;

story.borderColor = 0x740122;

story.type = "input";

story.multiline = true;

story.wordWrap = true;

story.html = true;

story.textColor = 0x740122;

story.variable = "story1";

}

--------------------

Best wishes
Tony


Re: Set Font ?? Sarford
9/5/2005 1:20:43 PM
Re: Set Font ?? NSurveyor
9/5/2005 6:52:49 PM
Look up TextFormat in the actionscript dictionary:

on (release) {
this.createTextField("story", 10, 96.2, -79.2, 589, 297);
story.border = true;
story.borderColor = 0x740122;
story.type = "input";
story.multiline = true;
story.wordWrap = true;
story.html = true;
story.variable = "story1";
var tf = new TextFormat();
tf.color = 0x740122;
tf.size = 10;
tf.font = "Verdana";
story.setTextFormat(tf);
}

AddThis Social Bookmark Button