hi all. i'm using createTextField together with a font symbol to create a
dynamic list of textfields. this works fine as long i'm not trying to use
a unicode font like arial ms unicode for it. is there some option somewhere
to say what to embedd for the font symbol, something i can tick "japanese
all" like on a regular dynamic text field? here's what i do (just a snipped,
none copy+paste working code):

tFo = new TextFormat();
tFo.font = "pixfnt"; // my arial unicode ms font symbol
tFo.color = 0x999999;
tFo.size = 11;

tFoO = new TextFormat();
tFoO.color = 0xFF0000;

tFV = new TextFormat();
tFV.color = 0x333333;

this["textHolder"+i].createTextField(tF,i,0,ypos,100,tmpheight);
this["textHolder"+i][tF].html = true;
this["textHolder"+i][tF].autoSize = "left";
this["textHolder"+i][tF].wordWrap = true;
this["textHolder"+i][tF].selectable = 0;
this["textHolder"+i][tF].multiline = 1;
this["textHolder"+i][tF].type = "dynamic";
this["textHolder"+i][tF].embedFonts = true;
this["textHolder"+i][tF].htmlText = _root.awardlistunique[i-1];
this["textHolder"+i][tF].setTextFormat(tFo);
this["textHolder"+i][tF].setNewTextFormat(tFo);

i'm exporting to flash 6! as said it works fine for all "english"-content,
but when filling the htmltext with japanese uni-code content (which works
on other parts of my application, so that's not the problem) it's doesnt.
again: the font symbol "pixfnt" (linkage name) uses arial ms unicode... what
i'm looking for is something like where to set which fonts to embedd on that
symbol!? thanks: lars


_______________________________________________
Flashcoders@chattyfig.figleaf.com
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