Yet more printjob issues-aliased nonvector test in print?

Im on Flash 8 too. So you had to install the same font twice by renaming the font file for this to work? wierd.

I don’t have to have a font symbol in the library with linkage?

I’m just using Arial, so, lets assume I installed Arial and Arial2. I would then:


_root.createTextField("myfield", 1, 20, 20, 20, 20);
myfield.html = true;
myfield.embedFonts = true;
var tf:TextFormat = new TextFormat();
tf.font = "arial";
tf.font = "arial2"; // this doesn't overwrite the previous font assignment?

myfield.htmlText = "<b>This is bold</b> this is not. And this is all in Arial and doesn't look like crap when i print it.";