Thanks, but it doesn't matter if it's htmlText or regular text.  When I
trace out the HTML text, shows:

<FONT FACE="Wingdings"...etc.

My code is easy to test:

this.createTextField("test_txt", 1, 100, 100, 100, 100);
test_txt.html = true;
test_txt.htmlText = "Hello";
testFormat = new TextFormat();
testFormat.font = "Wingdings";
test_txt.setTextFormat(testFormat);

//or as non-HTML:

this.createTextField("test_txt", 1, 100, 100, 100, 100);
test_txt.text = "Hello";
testFormat = new TextFormat();
testFormat.font = "Wingdings";
test_txt.setTextFormat(testFormat);

What do you see when you paste that code in?  Doesn't show Wingdings as
expected right?

Jason Merrill
Bank of America 
Learning & Organization Effectiveness - Technology Solutions 
 
 
 
 
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to