all groups > flash actionscript > december 2004 >
You're in the

flash actionscript

group:

Embed font in a dynamic text box


Embed font in a dynamic text box theco
12/12/2004 6:49:41 PM
flash actionscript:
How can I make my embed font to work in a dynamic text box

this my text box code

_root.createTextField("msg_txt", 3, 30, 222, 500, 40);
msg_txt.multiline = true;
msg_txt.wordWrap = true;
msg_txt.embedFonts = true;
msg_txt.background = true

var my_fmt:TextFormat = new TextFormat();
my_fmt.color = 0x0000ff;
my_fmt.underline = false;
my_fmt.size = 28;
my_fmt.align = "center"
my_fmt.font = "VAGRounded BT"
msg_txt.text = "YOU ARE HOT B";
msg_txt.setTextFormat(my_fmt);

Re: Embed font in a dynamic text box theco
12/12/2004 7:43:10 PM
cool thank's
[quoted text, click to view]

Re: Embed font in a dynamic text box theco
12/12/2004 8:31:43 PM
I have another question for you why if I specified the same properties for
an input text box
it dosnt work

[quoted text, click to view]

Re: Embed font in a dynamic text box NSurveyor
12/13/2004 11:22:29 PM
Re: Embed font in a dynamic text box NSurveyor
12/14/2004 1:18:53 AM
It should work, what script are you using. This script should work:
_root.createTextField("msg_txt", 3, 30, 222, 500, 40);
msg_txt.multiline = true;
msg_txt.wordWrap = true;
msg_txt.embedFonts = true;
msg_txt.background = true;
msg_txt.type = 'input';

var my_fmt:TextFormat = new TextFormat();
my_fmt.color = 0x0000ff;
my_fmt.underline = false;
my_fmt.size = 28;
my_fmt.align = "center"
my_fmt.font = "VAGRounded BT"
msg_txt.text = "YOU ARE HOT B";
msg_txt.setTextFormat(my_fmt);
Re: Embed font in a dynamic text box NSurveyor
12/14/2004 1:19:31 AM
No wait, this should work:
_root.createTextField("msg_txt", 3, 30, 222, 500, 40);
msg_txt.multiline = true;
msg_txt.wordWrap = true;
msg_txt.embedFonts = true;
msg_txt.background = true;
msg_txt.type = 'input';

var my_fmt:TextFormat = new TextFormat();
my_fmt.color = 0x0000ff;
my_fmt.underline = false;
my_fmt.size = 28;
my_fmt.align = "center"
my_fmt.font = "myFont";
msg_txt.text = "YOU ARE HOT B";
msg_txt.setTextFormat(my_fmt);
AddThis Social Bookmark Button